From 453043e9d30671735ec3aad29d25091d4affb336 Mon Sep 17 00:00:00 2001 From: Zhu Qun-Ying Date: Thu, 18 May 2023 20:43:02 +0100 Subject: system/refind-bin: Added (An EFI boot manager utility) Signed-off-by: bedlam Signed-off-by: Willy Sudiarto Raharjo --- system/refind-bin/README | 15 ++++ system/refind-bin/refind-bin.SlackBuild | 116 +++++++++++++++++++++++++++ system/refind-bin/refind-bin.info | 10 +++ system/refind-bin/slack-desc | 19 +++++ system/refind-bin/slackware-banner.png | Bin 0 -> 27832 bytes system/refind-bin/slackware-banner.svg | 136 ++++++++++++++++++++++++++++++++ 6 files changed, 296 insertions(+) create mode 100644 system/refind-bin/README create mode 100644 system/refind-bin/refind-bin.SlackBuild create mode 100644 system/refind-bin/refind-bin.info create mode 100644 system/refind-bin/slack-desc create mode 100644 system/refind-bin/slackware-banner.png create mode 100644 system/refind-bin/slackware-banner.svg (limited to 'system') diff --git a/system/refind-bin/README b/system/refind-bin/README new file mode 100644 index 0000000000000..e0a0f59854c92 --- /dev/null +++ b/system/refind-bin/README @@ -0,0 +1,15 @@ +rEFInd (An EFI boot manager utility) + +A graphical boot manager for EFI- and UEFI-based computers, such as all +Intel-based Macs and recent (most 2011 and later) PCs. rEFInd presents +a boot menu showing all the EFI boot loaders on the EFI-accessible +partitions, and optionally BIOS-bootable partitions on Macs. +EFI-compatible OSes, including Linux, provide boot loaders that rEFInd +can detect and launch. rEFInd can launch Linux EFI boot loaders such +as ELILO, GRUB Legacy, GRUB 2, and 3.3.0 and later kernels with EFI +stub support. + +This script does not build the boot manager from source, instead it +repackages the official binary as a Slackware package. + +There is an another Sbo script "rEFInd", which builds from source. diff --git a/system/refind-bin/refind-bin.SlackBuild b/system/refind-bin/refind-bin.SlackBuild new file mode 100644 index 0000000000000..465f5fcf90d13 --- /dev/null +++ b/system/refind-bin/refind-bin.SlackBuild @@ -0,0 +1,116 @@ +#!/bin/bash + +# Slackware build script for refind + +# Copyright 2014-2023 Zhu Qun-Ying +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=refind-bin +SRCNAM=refind +VERSION=${VERSION:-0.14.0.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "i586" ] && [ "$ARCH" != "i686" ]; then + echo "Platform $ARCH not supported." + exit +fi + +# If the variable PRINT_PACKAGE_NAME is set, then this script will report what +# the name of the created package would be, and then exit. This information +# could be useful to other scripts. +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $SRCNAM-bin-$VERSION +unzip $CWD/$SRCNAM-bin-${VERSION}.zip +cd $SRCNAM-bin-$VERSION +chown -R root:root . + +REFIND_SHARE_DIR=$PKG/usr/share/$PRGNAM-$VERSION +mkdir -p $PKG/usr/sbin +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +mkdir -p $REFIND_SHARE_DIR + +# copy keys +cp -ra keys refind refind-install refind-mkdefault fonts banners $REFIND_SHARE_DIR +cp mkrlconf mvrefind mountesp $PKG/usr/sbin +cp -a docs/* *.txt $PKG/usr/doc/$PRGNAM-$VERSION + +(cd $PKG/usr/sbin + ln -sf /usr/share/$PRGNAM-$VERSION/refind-install + ln -sf /usr/share/$PRGNAM-$VERSION/refind-mkdefault) + +AA64_PKG="$REFIND_SHARE_DIR/refind/drivers_aa64 \ + $REFIND_SHARE_DIR/refind/tools_aa64 \ + $REFIND_SHARE_DIR/refind/refind_aa64.efi" +# remove unnecessary packages +if [ "$ARCH" = "x86_64" ]; then + rm -rf $REFIND_SHARE_DIR/refind/drivers_ia32 \ + $REFIND_SHARE_DIR/refind/tools_ia32 \ + $REFIND_SHARE_DIR/refind/refind_ia32.efi \ + $AA64_PKG +else + rm -rf $REFIND_SHARE_DIR/refind/drivers_x64 \ + $REFIND_SHARE_DIR/refind/tools_x64 \ + $REFIND_SHARE_DIR/refind/refind_x64.efi \ + $AA64_PKG +fi + +find $PKG/usr/doc -type d -exec chmod 0755 {} \; + +# include a slackware banner made by me, including the svg version +cp $CWD/slackware-banner.* $REFIND_SHARE_DIR/banners + +mkdir -p $PKG/usr/man/man8 +mv $PKG/usr/doc/$PRGNAM-$VERSION/man/*.8 $PKG/usr/man/man8 +rmdir $PKG/usr/doc/$PRGNAM-$VERSION/man +find $PKG/usr/man -type f -exec chmod 0644 {} \; +gzip $PKG/usr/man/man8/* + +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/refind-bin/refind-bin.info b/system/refind-bin/refind-bin.info new file mode 100644 index 0000000000000..d78996371ced2 --- /dev/null +++ b/system/refind-bin/refind-bin.info @@ -0,0 +1,10 @@ +PRGNAM="refind-bin" +VERSION="0.14.0.2" +HOMEPAGE="https://www.rodsbooks.com/refind" +DOWNLOAD="https://sourceforge.net/projects/refind/files/0.14.0.2/refind-bin-0.14.0.2.zip" +MD5SUM="541ad974824eec978f953bdee349bd5c" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Zhu Qun-Ying" +EMAIL="zhu.qunying@gmail.com" diff --git a/system/refind-bin/slack-desc b/system/refind-bin/slack-desc new file mode 100644 index 0000000000000..56aad68dfafe0 --- /dev/null +++ b/system/refind-bin/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +refind-bin: refind-bin (An EFI boot manager utility) +refind-bin: +refind-bin: A graphical boot manager for EFI and UEFI-based computers, such as all +refind-bin: Intel-based Macs and recent (most 2011 and later) PCs. rEFInd presents +refind-bin: a boot menu showing all the EFI boot loaders on the EFI-accessible +refind-bin: partitions, and optionally BIOS-bootable partitions on Macs. +refind-bin: EFI-compatible OSes, including Linux, provide boot loaders that rEFInd +refind-bin: can detect and launch. rEFInd can launch Linux EFI boot loaders such +refind-bin: as ELILO, GRUB Legacy, GRUB 2, and 3.3.0 and later kernels with EFI +refind-bin: stub support. +refind-bin: Home page: http://www.rodsbooks.com/refind/ diff --git a/system/refind-bin/slackware-banner.png b/system/refind-bin/slackware-banner.png new file mode 100644 index 0000000000000..3458904c3dbbc Binary files /dev/null and b/system/refind-bin/slackware-banner.png differ diff --git a/system/refind-bin/slackware-banner.svg b/system/refind-bin/slackware-banner.svg new file mode 100644 index 0000000000000..78baf4d4d082e --- /dev/null +++ b/system/refind-bin/slackware-banner.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + Slackware + l i n u x + http://www.slackware.com + + + -- cgit v1.2.3