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 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)