diff options
Diffstat (limited to 'testing/flashrom/flashrom.post-install')
-rwxr-xr-x | testing/flashrom/flashrom.post-install | 15 |
1 files changed, 15 insertions, 0 deletions
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 + |