mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-07 11:52:11 +01:00
Because of adding 'libftdi1-dev' which comes itself from community, move flashrom to community as well. Signed-off-by: Jan Samek <samekh@email.cz>
16 lines
357 B
Bash
Executable File
16 lines
357 B
Bash
Executable File
#!/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
|
|
|