system/efibootmgr: Removed (included in Slackware 14.1)

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
Robby Workman 2013-09-18 23:52:00 -05:00
parent 1cbf184f87
commit 1a4aba738a
4 changed files with 0 additions and 125 deletions

View file

@ -1,14 +0,0 @@
efibootmgr is a Linux user-space application to modify the Intel Extensible
Firmware Interface (EFI) Boot Manager. This application can create and
destroy boot entries, change the boot order, change the next running boot
option, and more.
Details on the EFI Boot Manager are available from the EFI Specification,
v1.02 or above, available from:
http://developer.intel.com
Note: In order to use this, you'll have to boot your system in EFI mode and
load the "efivars" kernel module:
modprobe efivars

View file

@ -1,82 +0,0 @@
#!/bin/sh
# Slackware build script for efibootmgr
# Copyright 2012 Dimitris Tsagkatakis <dtsagka at otenet dot gr>
# 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.
PRGNAM=efibootmgr
VERSION=${VERSION:-0.6.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
else
SLKCFLAGS="-O2"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" make
install -Dm755 src/efibootmgr/efibootmgr $PKG/usr/sbin/efibootmgr
install -Dm644 src/man/man8/efibootmgr.8 $PKG/usr/man/man8/efibootmgr.8
strip --strip-unneeded $PKG/usr/sbin/efibootmgr # strip binary
gzip -9 $PKG/usr/man/man8/efibootmgr.8 # compress manpage
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a doc/* AUTHORS COPYING README $PKG/usr/doc/$PRGNAM-$VERSION/
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:-tgz}

View file

@ -1,10 +0,0 @@
PRGNAM="efibootmgr"
VERSION="0.6.0"
HOMEPAGE="http://linux.dell.com/efibootmgr/"
DOWNLOAD="http://linux.dell.com/efibootmgr/efibootmgr-0.6.0/efibootmgr-0.6.0.tar.gz"
MD5SUM="1adcda5218f79444b3aadb7598f01bed"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Dimitris Tsagkatakis"
EMAIL="dtsagka@otenet.gr"

View file

@ -1,19 +0,0 @@
# 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------------------------------------------------------|
efibootmgr: efibootmgr (Tool to manipulate the EFI/UEFI Boot Manager)
efibootmgr:
efibootmgr: efibootmgr is a Linux user-space application to modify the Intel
efibootmgr: Extensible Firmware Interface (EFI) Boot Manager. This application
efibootmgr: can create and destroy boot entries, change the boot order, change
efibootmgr: the next running boot option, and more.
efibootmgr:
efibootmgr: Details on the EFI Boot Manager are available from the EFI
efibootmgr: Specification, v1.02 or above, available from:
efibootmgr:
efibootmgr: http://developer.intel.com