aboutsummaryrefslogtreecommitdiffstats
path: root/testing/flashrom
diff options
context:
space:
mode:
Diffstat (limited to 'testing/flashrom')
-rw-r--r--testing/flashrom/APKBUILD9
-rwxr-xr-xtesting/flashrom/flashrom.post-install15
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
+