diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-27 06:11:07 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-27 06:14:12 -0500 |
| commit | a710b34d680d55b08c5114c4a96a5a1c24f31f24 (patch) | |
| tree | cf1a927d3a1fb3d4c063850c717955d4c6f87417 | |
| parent | 528bd468a016db53eeda75518ba6c88916a45c69 (diff) | |
chore: fix BootZ workflows.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | .github/workflows/boot-ahci.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/boot-pio.yml | 2 | ||||
| -rw-r--r-- | src/boot/src/BootSupport.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/boot-ahci.yml b/.github/workflows/boot-ahci.yml index 969051c7..8232219a 100644 --- a/.github/workflows/boot-ahci.yml +++ b/.github/workflows/boot-ahci.yml @@ -15,6 +15,6 @@ 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 && - cd src/boot export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all + cd src/boot && export ATA_PIO_SUPPORT=1 && make -f amd64-ci.make all diff --git a/.github/workflows/boot-pio.yml b/.github/workflows/boot-pio.yml index 9aecfd4a..45ba3d2b 100644 --- a/.github/workflows/boot-pio.yml +++ b/.github/workflows/boot-pio.yml @@ -15,6 +15,6 @@ 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 && - cd src/boot export AHCI_SUPPORT=1 && make -f amd64-ci.make all + cd src/boot && export AHCI_SUPPORT=1 && make -f amd64-ci.make all diff --git a/src/boot/src/BootSupport.cc b/src/boot/src/BootSupport.cc index c7c86ea2..d39ea884 100644 --- a/src/boot/src/BootSupport.cc +++ b/src/boot/src/BootSupport.cc @@ -13,7 +13,7 @@ #include <KernelKit/PE.h> #ifdef __BOOTZ_STANDALONE__ -EXTERN_C int atexit(void (*f)()) { return 0; } +EXTERN_C int atexit(void (*f)()) { NE_UNUSED(f); return 0; } /// @brief memset definition in C++. /// @param dst destination pointer. |
