From 5bfdaf5b5a10e52b33100c857d77ed26d92f1147 Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Fri, 13 Dec 2024 20:36:51 -0700 Subject: [PATCH 1/2] [build] Create 64M MBR HD image with 'make images' --- image/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/image/Makefile b/image/Makefile index 42aae1bac..a07da8286 100644 --- a/image/Makefile +++ b/image/Makefile @@ -47,7 +47,7 @@ images-minix: fd360-minix fd720-minix fd1200-minix fd1440-minix fd2880-minix images-fat: fd360-fat fd720-fat fd1200-fat fd1440-fat fd2880-fat hd32-fat hd32mbr-fat -images-hd: hd32-minix hd32mbr-minix hd64-minix +images-hd: hd32-minix hd32mbr-minix hd64-minix hd64mbr-minix fd360-minix: echo CONFIG_APPS_360K=y > Config @@ -206,6 +206,10 @@ hd32mbr-minix: hd32-minix dd if=/dev/zero bs=512 count=63 | cat - hd32-minix.img > hd32mbr-minix.img setboot hd32mbr-minix.img -P63,16,63 -Sm $(HD_MBR_BOOT) +hd64mbr-minix: hd64-minix + dd if=/dev/zero bs=512 count=63 | cat - hd64-minix.img > hd64mbr-minix.img + setboot hd64mbr-minix.img -P63,16,63 -Sm $(HD_MBR_BOOT) + hd32mbr-fat: hd32-fat dd if=/dev/zero bs=512 count=63 | cat - hd32-fat.img > hd32mbr-fat.img setboot hd32mbr-fat.img -P63,16,63 -Sf $(HD_MBR_BOOT) From 888fe45a610818f00ea8423d66456ad7665b592f Mon Sep 17 00:00:00 2001 From: Greg Haerr Date: Fri, 13 Dec 2024 20:39:58 -0700 Subject: [PATCH 2/2] Add hd64mbr-minix.img to CI workflow --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78c80b0c6..a04a4a1b4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -141,6 +141,12 @@ jobs: path: image/hd64-minix.img - name: upload17 + uses: actions/upload-artifact@v4 + with: + name: hd64mbr-minix.img + path: image/hd64mbr-minix.img + + - name: upload18 uses: actions/upload-artifact@v4 with: name: fd1232.img