Rename legacy boot code for clarity

As the legacy boot code will be abandoned for the time being, it made
sense to rename the folder to indicate the legacy nature of the code.
This commit is contained in:
Eric-Paul Ickhorn 2024-08-07 10:28:40 +02:00
parent 7abe0539f9
commit 1b7ef62c61
Signed by: epickh
GPG Key ID: 1358818BAA38B104
13 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ cd $PROJECT_PATH/bootsector
nasm -o $PROJECT_PATH/.build/objects/bootsector.bin \
bootsector.asm
bash $PROJECT_PATH/loader/build.bash
mv $PROJECT_PATH/loader/loader.bin $PROJECT_PATH/.build/objects/loader.bin
bash $PROJECT_PATH/legacy-boot/build.bash
mv $PROJECT_PATH/legacy-boot/loader.bin $PROJECT_PATH/.build/objects/loader.bin
cat $PROJECT_PATH/.build/objects/bootsector.bin > $PROJECT_PATH/nightloader.bin
cat $PROJECT_PATH/.build/objects/loader.bin >> $PROJECT_PATH/nightloader.bin