diff options
author | Nathan Angelacos <nangel@tetrasec.net> | 2010-08-19 21:19:55 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-08-20 12:08:54 +0000 |
commit | 72157cb0ed81d9cedbcfa01bc7a734aa45f3dce1 (patch) | |
tree | 52e75b5a25b478df06970d413f0b9d12842a5165 /testing/flashrom | |
parent | 1e33b7eab5f93075308e651c0be053bd3a572a3b (diff) | |
download | aports-72157cb0ed81d9cedbcfa01bc7a734aa45f3dce1.tar.bz2 aports-72157cb0ed81d9cedbcfa01bc7a734aa45f3dce1.tar.xz |
testing/dmidecode: new aport (dependency for flashrom)
dmidecode reports system hardware information stored in BIOS
testing/flashrom: r1 - add dependency on dmidecode
print warning if installed on grsec kernel
Diffstat (limited to 'testing/flashrom')
-rw-r--r-- | testing/flashrom/APKBUILD | 9 | ||||
-rwxr-xr-x | testing/flashrom/flashrom.post-install | 15 |
2 files changed, 20 insertions, 4 deletions
diff --git a/testing/flashrom/APKBUILD b/testing/flashrom/APKBUILD index 62420605a3..7864cd6a24 100644 --- a/testing/flashrom/APKBUILD +++ b/testing/flashrom/APKBUILD @@ -1,14 +1,15 @@ -Contributor: nangel@tetrasec.net -# Maintainer: +# Contributor: +# Maintainer: Nathan Angelacos <nangel@alpinelinux.org> pkgname=flashrom pkgver=0.9.2 -pkgrel=0 +pkgrel=1 pkgdesc="A utility for identifying, reading, writing, verifying and erasing flash chips" url="http://www.flashrom.org/Flashrom" license="GPL" -depends= +depends=dmidecode makedepends=pciutils-dev subpackages="$pkgname-doc" +install="$pkgname.post-install" source="http://qa.coreboot.org/releases/flashrom-0.9.2.tar.bz2" _builddir="$srcdir"/$pkgname-$pkgver diff --git a/testing/flashrom/flashrom.post-install b/testing/flashrom/flashrom.post-install new file mode 100755 index 0000000000..b7919f5fd1 --- /dev/null +++ b/testing/flashrom/flashrom.post-install @@ -0,0 +1,15 @@ +#!/bin/sh +if [ -e /proc/sys/kernel/grsecurity/ ]; then +cat - <<EOF + + ************[ flashrom package installation notice ]**************** + + You appear to be running a grsec enabled kernel. + flashrom needs write access to /dev/mem and will likely not work + + ********************************************************************* + +EOF +fi +exit 0 + |