mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
autosamba: skip mount /boot on x86
This commit is contained in:
parent
a5559680e1
commit
e0b8803b71
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=autosamba
|
PKG_NAME:=autosamba
|
||||||
PKG_VERSION:=1
|
PKG_VERSION:=1
|
||||||
PKG_RELEASE:=11
|
PKG_RELEASE:=12
|
||||||
PKG_ARCH:=all
|
PKG_ARCH:=all
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
@ -55,7 +55,7 @@ case "$ACTION" in
|
|||||||
|
|
||||||
wait_for_init
|
wait_for_init
|
||||||
|
|
||||||
cat /proc/mounts | while read j
|
cat /proc/mounts | grep -v '/boot' | while read j
|
||||||
do
|
do
|
||||||
str=${j%% *}
|
str=${j%% *}
|
||||||
if [ "$str" == $path ];then
|
if [ "$str" == $path ];then
|
||||||
|
Loading…
Reference in New Issue
Block a user