diff options
| -rwxr-xr-x | debug_ahci_x64.sh | 2 | ||||
| -rwxr-xr-x | debug_ata_x64.sh | 2 | ||||
| -rwxr-xr-x | release_ahci_x64.sh | 3 | ||||
| -rwxr-xr-x | release_ata_x64.sh | 5 |
4 files changed, 9 insertions, 3 deletions
diff --git a/debug_ahci_x64.sh b/debug_ahci_x64.sh index 24b80246..e3ff833d 100755 --- a/debug_ahci_x64.sh +++ b/debug_ahci_x64.sh @@ -10,6 +10,6 @@ make -f amd64-desktop.make all cd ../boot make -f amd64-desktop.make all cd ../../ -./tooling/copy_to_fat32.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root +./tooling/mk_img.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root cd dev/boot make -f amd64-desktop.make run-efi-amd64-ahci
\ No newline at end of file diff --git a/debug_ata_x64.sh b/debug_ata_x64.sh index 767e53f9..cc46b238 100755 --- a/debug_ata_x64.sh +++ b/debug_ata_x64.sh @@ -10,6 +10,6 @@ make -f amd64-desktop.make all cd ../boot make -f amd64-desktop.make all cd ../../ -./tooling/copy_to_fat32.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root +./tooling/mk_img.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root cd dev/boot make -f amd64-desktop.make run-efi-amd64-ata-pio diff --git a/release_ahci_x64.sh b/release_ahci_x64.sh index c7c4f5ca..d6289d58 100755 --- a/release_ahci_x64.sh +++ b/release_ahci_x64.sh @@ -6,4 +6,7 @@ cd dev/kernel make -f amd64-desktop.make all cd ../boot make -f amd64-desktop.make all +cd ../../ +./tooling/mk_img.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root +cd dev/boot make -f amd64-desktop.make run-efi-amd64-ahci
\ No newline at end of file diff --git a/release_ata_x64.sh b/release_ata_x64.sh index b4194627..3fa5d655 100755 --- a/release_ata_x64.sh +++ b/release_ata_x64.sh @@ -6,4 +6,7 @@ cd dev/kernel make -f amd64-desktop.make all cd ../boot make -f amd64-desktop.make all -make -f amd64-desktop.make run-efi-amd64-ata
\ No newline at end of file +cd ../../ +./tooling/mk_img.py ./dev/boot/src/nekernel-esp.img ./dev/boot/src/root +cd dev/boot +make -f amd64-desktop.make run-efi-amd64-ata-pio
\ No newline at end of file |
