Skip to content
Snippets Groups Projects
Commit 7994461a authored by Rosen Penev's avatar Rosen Penev Committed by Hauke Mehrtens
Browse files

base-files: replace fgrep with grep -F


fgrep is deprecated and replaced by grep -F. The latter is used
throughout the tree whereas this is the only usage of the former.

Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
parent f6a01d7f
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
[ -f /etc/banner ] && cat /etc/banner
[ -n "$FAILSAFE" ] && cat /etc/banner.failsafe
fgrep -sq '/ overlay ro,' /proc/mounts && {
grep -Fsq '/ overlay ro,' /proc/mounts && {
echo 'Your JFFS2-partition seems full and overlayfs is mounted read-only.'
echo 'Please try to remove files from /overlay/upper/... and reboot!'
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment