64bb883062
* Add new package haiku_loader.hpkg and move haiku_loader there. The package is built without compression, so that the stage 1 boot loader has a chance of loading it. * Adjust the stage 1 boot loader to load the haiku_loader package and relocate the boot loader code accordingly.
14 lines
346 B
Plaintext
14 lines
346 B
Plaintext
local haikuLoaderPackage = haiku_loader.hpkg ;
|
|
HaikuPackage $(haikuLoaderPackage) ;
|
|
|
|
|
|
# boot loader
|
|
AddFilesToPackage : haiku_loader ;
|
|
|
|
|
|
# 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 ;
|