From 20e6e9dca84f1879cc2b83bb35dfff9d60b8f238 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 30 Jun 2022 03:12:18 +0200 Subject: [PATCH 1/4] Changes that don't practically change anything, in order to trigger a new compile. --- biosdump/biosdump.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/biosdump/biosdump.c b/biosdump/biosdump.c index 6bfc2dd..c8cda88 100644 --- a/biosdump/biosdump.c +++ b/biosdump/biosdump.c @@ -26,7 +26,7 @@ dump_range(uint32_t base, uint32_t size, const char *id) FILE *f; /* Output the range being dumped. */ - printf("Dumping %s BIOS range (%08X-%08X)...", id, base, base + size - 1); + printf("Dumping %s BIOS range (%08X-%08X)... ", id, base, base + size - 1); /* Generate file name. */ sprintf(fn, "%08X.DMP", base); @@ -34,20 +34,20 @@ dump_range(uint32_t base, uint32_t size, const char *id) /* Open the dump file. */ f = fopen(fn, "wb"); if (!f) { - printf(" FAILURE\n"); + printf("FAILURE\n"); return 1; } /* Write the dump. */ if (fwrite((char *) base, 1, size, f) != size) { - printf(" FAILURE\n"); + printf("FAILURE\n"); fclose(f); return 2; } /* Finish the dump. */ fclose(f); - printf(" OK\n"); + printf("OK\n"); return 0; } From 1c3dcfcdca98d27392268ec580f7354535a67f40 Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 22 Sep 2022 19:07:12 +0200 Subject: [PATCH 2/4] Another non-change to trigger a compile to see if it's fixed. --- biosdump/biosdump.c | 1 + 1 file changed, 1 insertion(+) diff --git a/biosdump/biosdump.c b/biosdump/biosdump.c index c8cda88..8b318d9 100644 --- a/biosdump/biosdump.c +++ b/biosdump/biosdump.c @@ -19,6 +19,7 @@ #include "clib.h" +/* Dummy comment. */ static int dump_range(uint32_t base, uint32_t size, const char *id) { From 58e1e4e1a6e8f441d4b7a6e7290ba0dc85c9aff5 Mon Sep 17 00:00:00 2001 From: richardg867 Date: Mon, 17 Oct 2022 14:56:27 -0300 Subject: [PATCH 3/4] workflows: Fix openwatcom download --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d23b1a4..eee5777 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,13 +15,13 @@ jobs: steps: - name: Install build tools - run: sudo apt update && sudo apt install build-essential + run: sudo apt update && sudo apt install build-essential xz-utils - name: Download OpenWatcom if: steps.cache.outputs.cache-hit != 'true' run: | rm -rf /opt/watcom mkdir /opt/watcom - wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.gz | tar -xvz -C /opt/watcom + wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.xz | tar Jxvz -C /opt/watcom echo "/opt/watcom/binl64:/opt/watcom/binl" >> $GITHUB_PATH - uses: actions/checkout@v2 - name: Build `cp437` @@ -100,4 +100,4 @@ jobs: **/*.COM amikey/*.md multikey/*.md - viakey/*.md \ No newline at end of file + viakey/*.md From 8d6d020d98a723b7f50095ef52f2fec39278224d Mon Sep 17 00:00:00 2001 From: richardg867 Date: Mon, 17 Oct 2022 14:57:49 -0300 Subject: [PATCH 4/4] workflows: Fix build --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eee5777..6db1bac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: run: | rm -rf /opt/watcom mkdir /opt/watcom - wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.xz | tar Jxvz -C /opt/watcom + wget -qO- https://github.com/open-watcom/open-watcom-v2/releases/download/Current-build/ow-snapshot.tar.xz | tar -Jxv -C /opt/watcom echo "/opt/watcom/binl64:/opt/watcom/binl" >> $GITHUB_PATH - uses: actions/checkout@v2 - name: Build `cp437`