summaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-08 04:01:32 -0500
committerGitHub <noreply@github.com>2025-12-08 04:01:32 -0500
commitf78c535aec66e02584e1b02995dc12c9e1bcb64c (patch)
tree8fd8793369c30ddbfb61366407db3d464a95ad6b /scripts
parent1a20507a6ecaa084b61d9b9d686d2e186b683e35 (diff)
parente6768dc3b6c7864166211fd6e2f67ff4e5a2cbe5 (diff)
Merge pull request #114 from nekernel-org/new-scripts
chore: use `enum struct` instead of `enum class`.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/debug_ahci_arm64.sh6
-rwxr-xr-xscripts/debug_ahci_x64.sh6
-rwxr-xr-xscripts/debug_ata_x64.sh6
-rwxr-xr-xscripts/kernel_ci_x64.sh2
-rwxr-xr-xscripts/release_ahci_x64.sh6
-rwxr-xr-xscripts/release_ata_x64.sh6
-rwxr-xr-xscripts/setup_arm64_project.sh4
-rwxr-xr-xscripts/setup_x64_project.sh4
8 files changed, 20 insertions, 20 deletions
diff --git a/scripts/debug_ahci_arm64.sh b/scripts/debug_ahci_arm64.sh
index dcf4f145..37c5e3ba 100755
--- a/scripts/debug_ahci_arm64.sh
+++ b/scripts/debug_ahci_arm64.sh
@@ -6,11 +6,11 @@ export ATA_DMA_SUPPORT=
export DEBUG_SUPPORT=1
cd src/kernel
-make -f arm64-desktop.make all
+make -f arm64-desktop.make all
cd ../boot
-make -f arm64-desktop.make all
+make -f arm64-desktop.make all
make -f arm64-desktop.make disk
cd ../../
./tools/mk_img.py ./src/boot/src/nekernel-esp.img ./src/boot/src/root
cd src/boot
-make -f arm64-desktop.make run-efi-arm64
+make -f arm64-desktop.make -j 8 run-efi-arm64
diff --git a/scripts/debug_ahci_x64.sh b/scripts/debug_ahci_x64.sh
index 8e1ed083..6c829d1e 100755
--- a/scripts/debug_ahci_x64.sh
+++ b/scripts/debug_ahci_x64.sh
@@ -6,11 +6,11 @@ export ATA_DMA_SUPPORT=
export DEBUG_SUPPORT=1
cd src/kernel
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
cd ../boot
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
make -f amd64-desktop.make disk
cd ../../
./tools/mk_img.py ./src/boot/src/nekernel-esp.img ./src/boot/src/root
cd src/boot
-make -f amd64-desktop.make run-efi-amd64-ahci \ No newline at end of file
+make -f amd64-desktop.make -j 8 run-efi-amd64-ahci \ No newline at end of file
diff --git a/scripts/debug_ata_x64.sh b/scripts/debug_ata_x64.sh
index dc133614..920e96ea 100755
--- a/scripts/debug_ata_x64.sh
+++ b/scripts/debug_ata_x64.sh
@@ -6,11 +6,11 @@ export ATA_DMA_SUPPORT=
export DEBUG_SUPPORT=1
cd src/kernel
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
cd ../boot
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
make -f amd64-desktop.make disk
cd ../../
./tools/mk_img.py ./src/boot/src/nekernel-esp.img ./src/boot/src/root
cd src/boot
-make -f amd64-desktop.make run-efi-amd64-ata-pio
+make -f amd64-desktop.make -j 8 run-efi-amd64-ata-pio
diff --git a/scripts/kernel_ci_x64.sh b/scripts/kernel_ci_x64.sh
index 42f61636..614ff65e 100755
--- a/scripts/kernel_ci_x64.sh
+++ b/scripts/kernel_ci_x64.sh
@@ -6,4 +6,4 @@ export ATA_DMA_SUPPORT=
export DEBUG_SUPPORT=1
cd src/kernel
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
diff --git a/scripts/release_ahci_x64.sh b/scripts/release_ahci_x64.sh
index bd6e11aa..7106586c 100755
--- a/scripts/release_ahci_x64.sh
+++ b/scripts/release_ahci_x64.sh
@@ -3,11 +3,11 @@
export AHCI_SUPPORT=1
cd src/kernel
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
cd ../boot
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
make -f amd64-desktop.make disk
cd ../../
./tools/mk_img.py ./src/boot/src/nekernel-esp.img ./src/boot/src/root
cd src/boot
-make -f amd64-desktop.make run-efi-amd64-ahci \ No newline at end of file
+make -f amd64-desktop.make -j 8 run-efi-amd64-ahci \ No newline at end of file
diff --git a/scripts/release_ata_x64.sh b/scripts/release_ata_x64.sh
index 2a2fc8b4..d1d84476 100755
--- a/scripts/release_ata_x64.sh
+++ b/scripts/release_ata_x64.sh
@@ -3,11 +3,11 @@
export ATA_PIO_SUPPORT=1
cd src/kernel
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
cd ../boot
-make -f amd64-desktop.make all
+make -f amd64-desktop.make all
make -f amd64-desktop.make disk
cd ../../
./tools/mk_img.py ./src/boot/src/nekernel-esp.img ./src/boot/src/root
cd src/boot
-make -f amd64-desktop.make run-efi-amd64-ata-pio \ No newline at end of file
+make -f amd64-desktop.make -j 8 run-efi-amd64-ata-pio \ No newline at end of file
diff --git a/scripts/setup_arm64_project.sh b/scripts/setup_arm64_project.sh
index 668ca0a8..9a74e5cf 100755
--- a/scripts/setup_arm64_project.sh
+++ b/scripts/setup_arm64_project.sh
@@ -1,5 +1,5 @@
#!/bin/sh
cd src/boot
-make -f arm64-desktop.make efi
-make -f arm64-desktop.make epm-img \ No newline at end of file
+make -f arm64-desktop.make efi
+make -f arm64-desktop.make epm-img \ No newline at end of file
diff --git a/scripts/setup_x64_project.sh b/scripts/setup_x64_project.sh
index eb145faf..68a008ff 100755
--- a/scripts/setup_x64_project.sh
+++ b/scripts/setup_x64_project.sh
@@ -12,5 +12,5 @@ nebuild libSystem.json
cd ../ddk
nebuild ddk.json
cd ../boot
-make -f amd64-desktop.make efi
-make -f amd64-desktop.make epm-img
+make -f amd64-desktop.make efi
+make -f amd64-desktop.make epm-img