mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-07 03:29:36 +00:00
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: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
f6a01d7f5c
commit
7994461a5a
@ -3,7 +3,7 @@
|
|||||||
[ -f /etc/banner ] && cat /etc/banner
|
[ -f /etc/banner ] && cat /etc/banner
|
||||||
[ -n "$FAILSAFE" ] && cat /etc/banner.failsafe
|
[ -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 'Your JFFS2-partition seems full and overlayfs is mounted read-only.'
|
||||||
echo 'Please try to remove files from /overlay/upper/... and reboot!'
|
echo 'Please try to remove files from /overlay/upper/... and reboot!'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user