diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-21 13:52:03 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-21 13:52:23 +0200 |
| commit | 58f969493aaa834f472402a2bebe1cd37094a6d2 (patch) | |
| tree | cacfd1ff4073daa8b05638f6c78b8ed160e936cf | |
| parent | f4f543deae3a67c5580d1455081ab86b564cccea (diff) | |
dev, scripts: updated and fixed them.
- refer to the correct python script name.
- add the python script to release scripts too.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -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 |
