diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2022-01-21 19:58:34 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2022-01-22 08:59:55 +0100 |
commit | 399262bfa44c53fd233aa9d79b8e157e59a00f77 (patch) | |
tree | 40b0948607d92393d441b83b93597bd2158c1621 /source/a | |
parent | 30ad57f5bd43902fe63eb3d12d475791ccd4848a (diff) | |
download | current-399262bfa44c53fd233aa9d79b8e157e59a00f77.tar.gz current-399262bfa44c53fd233aa9d79b8e157e59a00f77.tar.xz |
Fri Jan 21 19:58:34 UTC 202220220121195834
kde/kconfigwidgets-5.90.1-x86_64-1.txz: Upgraded.
l/libwebp-1.2.2-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/a')
-rw-r--r-- | source/a/FTBFSlog | 5 | ||||
-rwxr-xr-x | source/a/elilo/elilo.SlackBuild | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/source/a/FTBFSlog b/source/a/FTBFSlog index b40091357..b32dfcdc4 100644 --- a/source/a/FTBFSlog +++ b/source/a/FTBFSlog @@ -1,3 +1,8 @@ +Fri Jan 21 19:53:13 UTC 2022 + elilo: Only built the tools, repackaging the previously build loaders. + Add a comment about how to rebuild the loaders (including 32-bit) if that + is needed for some reason. Thanks to nobodino. ++--------------------------+ Tue Apr 6 18:09:15 UTC 2021 libblockdev: Fix build with glib-2.68.0. Thanks to nobodino. +--------------------------+ diff --git a/source/a/elilo/elilo.SlackBuild b/source/a/elilo/elilo.SlackBuild index 57c8aa6aa..33809d721 100755 --- a/source/a/elilo/elilo.SlackBuild +++ b/source/a/elilo/elilo.SlackBuild @@ -91,12 +91,17 @@ grep -r -l StrnCpy * | xargs sed -i "s/StrnCpy/elilo_StrnCpy/g" # Increase kernel size limit from 8MB to 16MB (nobody will ever need more than 640K ;-): zcat $CWD/elilo.double.kernel.size.limit.diff.gz | patch -p1 --verbose || exit 1 -# We will build this from source. +# We will build the tools from source. # However, we will package the pre-built EFI binaries, since we would # like to include both 32-bit and 64-bit x86 EFI loaders in the # finished package. - +# To build everything, you'll need to *not* change into the tools directory, +# instead running "make" here in the top-level. Please note that due to +# memory exhaustion issues, to build the 32-bit loader you will need to +# use a 32-bit userspace with an x86_64 kernel. +cd tools make || exit 1 +cd .. # Install the files in the package directory: mkdir -p $PKG/usr/sbin |