diff --git a/Asuro.iso b/Asuro.iso index 2b6c1230..4c963284 100644 Binary files a/Asuro.iso and b/Asuro.iso differ diff --git a/bin/kernel.bin b/bin/kernel.bin index 4401a88b..240bd712 100755 Binary files a/bin/kernel.bin and b/bin/kernel.bin differ diff --git a/install_dev_env.sh b/install_dev_env.sh index 47ef3602..05b1de39 100755 --- a/install_dev_env.sh +++ b/install_dev_env.sh @@ -71,7 +71,27 @@ else echo "Success." fi +echo " " +echo "Installing xorriso..." +sudo apt-get install xorriso +if [ $? -ne 0 ] +then + echo "Failed to install!" + ERRCOUNT=$((ERRCOUNT+1)) +else + echo "Success." +fi +echo " " +echo "Installing GRUB PC Bin..." +sudo apt-get install grub-pc-bin +if [ $? -ne 0 ] +then + echo "Failed to install!" + ERRCOUNT=$((ERRCOUNT+1)) +else + echo "Success." +fi echo " " echo "WARNING: We assume you already have Grub installed." diff --git a/iso/boot/asuro.bin b/iso/boot/asuro.bin index 4401a88b..240bd712 100755 Binary files a/iso/boot/asuro.bin and b/iso/boot/asuro.bin differ diff --git a/lib/kernel.o b/lib/kernel.o index 8ea7acfd..2d8666db 100644 Binary files a/lib/kernel.o and b/lib/kernel.o differ diff --git a/lib/kernel.ppu b/lib/kernel.ppu index 97fea269..b3fab2f1 100644 Binary files a/lib/kernel.ppu and b/lib/kernel.ppu differ diff --git a/src/kernel.pas b/src/kernel.pas index a6ccb87b..93bdac64 100644 --- a/src/kernel.pas +++ b/src/kernel.pas @@ -4,8 +4,7 @@ interface uses multiboot, - console, - util; + console; procedure kmain(mbinfo: Pmultiboot_info_t; mbmagic: DWORD); stdcall; @@ -14,7 +13,7 @@ implementation procedure kmain(mbinfo: Pmultiboot_info_t; mbmagic: DWORD); stdcall; [public, alias: 'kmain']; begin console_init(); - console_writestringln('Asuro Booting...'); + console_writestringln('Booting Asuro...'); if (mbmagic <> MULTIBOOT_BOOTLOADER_MAGIC) then begin console_setdefaultattribute(console_combinecolors(Red, Black)); console_writestringln('Multiboot Compliant Boot-Loader Needed!');