Final fixes:

- All QEMU reproducibility issues resolved
- Added SPDX licensing
- Couple other small issues
- Fix guile reproducbility
This commit is contained in:
fosslinux 2022-03-07 18:58:20 +11:00
parent 9543a47f1b
commit b760b3eb2b
78 changed files with 287 additions and 56 deletions

View file

@ -0,0 +1,34 @@
SPDX-FileCopyrightText: 2022 fosslinux <fosslinux@aussies.space>
SPDX-License-Identifier: GPL-2.0-or-later
Don't build resizecons (will not build in chroot).
--- src/Makefile.am 2022-02-26 14:11:22.577168053 +1100
+++ src/Makefile.am 2022-02-26 14:11:34.641835790 +1100
@@ -10,10 +10,6 @@
PROGS += getkeycodes setkeycodes
endif
-if RESIZECONS_PROGS
-PROGS += resizecons
-endif
-
if OPTIONAL_PROGS
PROGS += \
screendump setlogcons setvesablank spawn_console spawn_login \
--- configure.ac 2022-02-26 14:10:50.047367229 +1100
+++ configure.ac 2022-02-26 14:11:15.310765839 +1100
@@ -53,12 +53,6 @@
esac
AM_CONDITIONAL(KEYCODES_PROGS, test "$KEYCODES_PROGS" = "yes")
-case $host_cpu in
- i?86*) RESIZECONS_PROGS=yes ;;
- *) RESIZECONS_PROGS=no ;;
-esac
-AM_CONDITIONAL(RESIZECONS_PROGS, test "$RESIZECONS_PROGS" = "yes")
-
AC_ARG_ENABLE(optional-progs,
AS_HELP_STRING(--enable-optional-progs, [Build and install a optional programs]),
[OPTIONAL_PROGS=$enableval],[OPTIONAL_PROGS=no])