diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-10-28 13:10:50 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-10-28 13:10:50 +0000 |
commit | 3bcb16b305726048905f6cc3ab377c5977008a4d (patch) | |
tree | 15f9b47f8f8e32e460e18289b1a9ce563cb23c67 /package/block-mount | |
parent | b5af64c5294f4bc08fef0e3951ca8d8f5f1ac5d6 (diff) | |
download | upstream-3bcb16b305726048905f6cc3ab377c5977008a4d.tar.gz upstream-3bcb16b305726048905f6cc3ab377c5977008a4d.tar.bz2 upstream-3bcb16b305726048905f6cc3ab377c5977008a4d.zip |
package/blockmount: simplify extroot module loading logic
SVN-Revision: 28650
Diffstat (limited to 'package/block-mount')
-rw-r--r-- | package/block-mount/Makefile | 6 | ||||
-rw-r--r-- | package/block-mount/files/extmount.sh | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/package/block-mount/Makefile b/package/block-mount/Makefile index 657f727bb9..a4434ed34f 100644 --- a/package/block-mount/Makefile +++ b/package/block-mount/Makefile @@ -1,6 +1,6 @@ # -# Copyright (C) 2006-2009 OpenWrt.org -# Copyright 2010 Vertical Communications +# Copyright (C) 2006-2011 OpenWrt.org +# Copyright (C) 2010 Vertical Communications # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=block-mount PKG_VERSION:=0.2.0 -PKG_RELEASE:=6 +PKG_RELEASE:=7 include $(INCLUDE_DIR)/package.mk diff --git a/package/block-mount/files/extmount.sh b/package/block-mount/files/extmount.sh index 44d662e63a..41a0e23863 100644 --- a/package/block-mount/files/extmount.sh +++ b/package/block-mount/files/extmount.sh @@ -1,5 +1,6 @@ #!/bin/sh -# Copyright 2010 Vertical Communications +# Copyright (C) 2006-2011 OpenWrt.org +# Copyright (C) 2010 Vertical Communications # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -15,9 +16,9 @@ set_jffs_mp() { er_load_modules() { mkdir -p /tmp/extroot_modules/modules.d mkdir -p /tmp/extroot_modules/modules - ln -sf /etc/modules.d/* /tmp/overlay/etc/modules.d/* /tmp/extroot_modules/modules.d + cp -L /etc/modules-boot.d/* /tmp/overlay/etc/modules-boot.d/* /tmp/extroot_modules/modules.d ln -sf /lib/modules/*/* /tmp/overlay/lib/modules/*/* /tmp/extroot_modules/modules - local modules="$(grep -l '# May be required for rootfs' /tmp/extroot_modules/modules.d/* 2>/dev/null)" + local modules="$(cat /tmp/extroot_modules/modules.d/* 2>/dev/null)" cd /tmp/extroot_modules/modules && [ -n "$modules" ] && { cat $modules | sed -e 's/^\([^#].*\)/insmod \.\/\1.ko/'| sh 2>&- || : } |