diff options
| -rw-r--r-- | .github/workflows/kernel-ahci-dev.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/kernel-ahci.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/kernel-pio-dev.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/kernel-pio.yml | 2 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rwxr-xr-x | scripts/debug_ahci_arm64.sh (renamed from debug_ahci_arm64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/debug_ahci_x64.sh (renamed from debug_ahci_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/debug_ata_x64.sh (renamed from debug_ata_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/format.sh (renamed from format.sh) | 0 | ||||
| -rwxr-xr-x | scripts/gdb.sh (renamed from gdb.sh) | 0 | ||||
| -rwxr-xr-x | scripts/kernel_ci_x64.sh (renamed from kernel_ci_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/lldb.sh (renamed from lldb.sh) | 0 | ||||
| -rwxr-xr-x | scripts/modules_ahci_x64.sh (renamed from modules_ahci_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/modules_pio_x64.sh (renamed from modules_pio_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/release_ahci_x64.sh (renamed from release_ahci_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/release_ata_x64.sh (renamed from release_ata_x64.sh) | 0 | ||||
| -rwxr-xr-x | scripts/setup_arm64_project.sh (renamed from setup_arm64_project.sh) | 0 | ||||
| -rwxr-xr-x | scripts/setup_x64_project.sh (renamed from setup_x64_project.sh) | 0 |
18 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/kernel-ahci-dev.yml b/.github/workflows/kernel-ahci-dev.yml index 4c7b04d9..4b91edf6 100644 --- a/.github/workflows/kernel-ahci-dev.yml +++ b/.github/workflows/kernel-ahci-dev.yml @@ -15,4 +15,4 @@ jobs: - uses: actions/checkout@v4 - name: Build CI run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && - ./modules_ahci_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh
\ No newline at end of file + ./scripts/modules_ahci_x64.sh && ./scripts/setup_x64_project.sh && ./scripts/kernel_ci_x64.sh
\ No newline at end of file diff --git a/.github/workflows/kernel-ahci.yml b/.github/workflows/kernel-ahci.yml index 77e8db74..0afd32ea 100644 --- a/.github/workflows/kernel-ahci.yml +++ b/.github/workflows/kernel-ahci.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v4 - name: Build CI run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && - ./modules_ahci_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh + ./scripts/modules_ahci_x64.sh && ./scripts/setup_x64_project.sh && ./scripts/kernel_ci_x64.sh diff --git a/.github/workflows/kernel-pio-dev.yml b/.github/workflows/kernel-pio-dev.yml index a768c0ce..50babd11 100644 --- a/.github/workflows/kernel-pio-dev.yml +++ b/.github/workflows/kernel-pio-dev.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v4 - name: Build CI run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && - ./modules_pio_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh + ./scripts/modules_pio_x64.sh && ./scripts/setup_x64_project.sh && ./scripts/kernel_ci_x64.sh
\ No newline at end of file diff --git a/.github/workflows/kernel-pio.yml b/.github/workflows/kernel-pio.yml index 5037ae2b..4e3621ca 100644 --- a/.github/workflows/kernel-pio.yml +++ b/.github/workflows/kernel-pio.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v4 - name: Build CI run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install mingw-w64 qemu-utils nasm && - ./modules_pio_x64.sh && ./setup_x64_project.sh && ./kernel_ci_x64.sh + ./scripts/modules_pio_x64.sh && ./scripts/setup_x64_project.sh && ./scripts/kernel_ci_x64.sh
\ No newline at end of file @@ -60,9 +60,9 @@ ```sh git clone https://github.com/nekernel-org/nekernel.git cd nekernel -./setup_x64_project.sh -./modules_ahci_x64.sh -./debug_ahci_x64.sh # For generic ATA PIO target (QEMU) +./scripts/setup_x64_project.sh +./scripts/modules_ahci_x64.sh +./scripts/debug_ahci_x64.sh # For generic ATA PIO target (QEMU) ``` - For ARM64 or other targets, see the scripts in `src/boot/`. diff --git a/debug_ahci_arm64.sh b/scripts/debug_ahci_arm64.sh index dcf4f145..dcf4f145 100755 --- a/debug_ahci_arm64.sh +++ b/scripts/debug_ahci_arm64.sh diff --git a/debug_ahci_x64.sh b/scripts/debug_ahci_x64.sh index 8e1ed083..8e1ed083 100755 --- a/debug_ahci_x64.sh +++ b/scripts/debug_ahci_x64.sh diff --git a/debug_ata_x64.sh b/scripts/debug_ata_x64.sh index dc133614..dc133614 100755 --- a/debug_ata_x64.sh +++ b/scripts/debug_ata_x64.sh diff --git a/format.sh b/scripts/format.sh index f36943cd..f36943cd 100755 --- a/format.sh +++ b/scripts/format.sh diff --git a/kernel_ci_x64.sh b/scripts/kernel_ci_x64.sh index 42f61636..42f61636 100755 --- a/kernel_ci_x64.sh +++ b/scripts/kernel_ci_x64.sh diff --git a/lldb.sh b/scripts/lldb.sh index 070197aa..070197aa 100755 --- a/lldb.sh +++ b/scripts/lldb.sh diff --git a/modules_ahci_x64.sh b/scripts/modules_ahci_x64.sh index aabb00bd..aabb00bd 100755 --- a/modules_ahci_x64.sh +++ b/scripts/modules_ahci_x64.sh diff --git a/modules_pio_x64.sh b/scripts/modules_pio_x64.sh index 0cf1395d..0cf1395d 100755 --- a/modules_pio_x64.sh +++ b/scripts/modules_pio_x64.sh diff --git a/release_ahci_x64.sh b/scripts/release_ahci_x64.sh index bd6e11aa..bd6e11aa 100755 --- a/release_ahci_x64.sh +++ b/scripts/release_ahci_x64.sh diff --git a/release_ata_x64.sh b/scripts/release_ata_x64.sh index 2a2fc8b4..2a2fc8b4 100755 --- a/release_ata_x64.sh +++ b/scripts/release_ata_x64.sh diff --git a/setup_arm64_project.sh b/scripts/setup_arm64_project.sh index 668ca0a8..668ca0a8 100755 --- a/setup_arm64_project.sh +++ b/scripts/setup_arm64_project.sh diff --git a/setup_x64_project.sh b/scripts/setup_x64_project.sh index eb145faf..eb145faf 100755 --- a/setup_x64_project.sh +++ b/scripts/setup_x64_project.sh |
