haiku/build/jam/packages/HaikuLoader

17 lines
571 B
Plaintext
Raw Normal View History

local haikuLoaderPackage = haiku_loader.hpkg ;
HaikuPackage $(haikuLoaderPackage) ;
# Add compiled boot loaders for architecture
# NOTE: bios_ia32 *MUST* be first on x86 in the hpkg for the MBR loader.
# It currently is based on name (b before e)
local bootTarget ;
for bootTarget in $(HAIKU_BOOT_TARGETS) {
AddFilesToPackage : haiku_loader.$(bootTarget) ;
}
# Force no compression, so the stage one loader can directly execute the boot
# loader.
HAIKU_PACKAGE_COMPRESSION_LEVEL on $(haikuLoaderPackage) = 0 ;
BuildHaikuPackage $(haikuLoaderPackage) : haiku_loader ;