BuildSystem: Remove old bootloader target

And creating image now builds the bootloader
This commit is contained in:
Bananymous 2023-11-20 00:54:15 +02:00
parent 8630f71f0c
commit f8f7e2208f
1 changed files with 1 additions and 6 deletions

View File

@ -42,6 +42,7 @@ build_toolchain () {
}
create_image () {
build_target bootloader
build_target install-sysroot
$BANAN_SCRIPT_DIR/image.sh "$1"
}
@ -95,12 +96,6 @@ case $1 in
rm -f $FAKEROOT_FILE
rm -rf $BANAN_SYSROOT
;;
bootloader)
create_image
build_target bootloader
$BANAN_ROOT_DIR/bootloader/install.sh
$BANAN_SCRIPT_DIR/qemu.sh -serial stdio $QEMU_ACCEL
;;
*)
build_target $1
;;