autosamba: skip mount /boot on x86

This commit is contained in:
lean 2021-11-29 16:13:03 +08:00
parent a5559680e1
commit e0b8803b71
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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