diff options
Diffstat (limited to 'source/installer')
-rw-r--r-- | source/installer/ChangeLog.txt | 6 | ||||
-rwxr-xr-x | source/installer/build_installer.sh | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt index 4281c0f71..65b3d6e5c 100644 --- a/source/installer/ChangeLog.txt +++ b/source/installer/ChangeLog.txt @@ -1,3 +1,9 @@ +Fri Dec 1 09:49:03 GMT 2023 + Busybox's version of 'xzcat' creates distinct output compared to the actual + 'xz' when combined with 'dd' through piping. This issue is fixed by creating + a symbolic link from /bin/xzcat to /bin/xz (the 'real' xz). + Thanks to Stuart Winter. ++--------------------------+ Sat Nov 25 17:21:48 UTC 2023 Added /usr/libexec/nfsrahead from nfs-utils package to fix error: udevd[452]: failed to execute '/usr/libexec/nfsrahead' diff --git a/source/installer/build_installer.sh b/source/installer/build_installer.sh index 5b317ca59..755ab7722 100755 --- a/source/installer/build_installer.sh +++ b/source/installer/build_installer.sh @@ -1462,6 +1462,10 @@ done if [ -r $PKG/$ARCH-installer-filesystem/sbin/lspci -a ! -L $PKG/$ARCH-installer-filesystem/sbin/lspci -a -L $PKG/$ARCH-installer-filesystem/bin/lspci ]; then rm -f $PKG/$ARCH-installer-filesystem/bin/lspci fi +# busybox's implementation of 'xzcat' provides different output when piped into 'dd'. +# Symlink 'xzcat' to the real 'xz' as we do within the OS: +cd $PKG/$ARCH-installer-filesystem/bin +ln -fs xz xzcat # Update to latest versions of files within /etc/ # /etc/ file Package Reason |