2010-02-27 00:46:10 +02:00
|
|
|
#!/bin/sh
|
2011-10-28 16:10:50 +03:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
|
|
|
# Copyright (C) 2010 Vertical Communications
|
2010-02-27 00:46:10 +02:00
|
|
|
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
|
|
|
determine_root_device() {
|
|
|
|
root_device="$(mount | grep ' / ' | cut -f1 -d\ | grep -v rootfs )"
|
|
|
|
}
|
|
|
|
|
|
|
|
set_jffs_mp() {
|
|
|
|
jffs="$(awk '/jffs2/ {print $2}' /proc/mounts)"
|
|
|
|
}
|
|
|
|
|
|
|
|
er_load_modules() {
|
2010-09-23 16:58:05 +03:00
|
|
|
mkdir -p /tmp/extroot_modules/modules.d
|
|
|
|
mkdir -p /tmp/extroot_modules/modules
|
2011-10-28 16:10:50 +03:00
|
|
|
cp -L /etc/modules-boot.d/* /tmp/overlay/etc/modules-boot.d/* /tmp/extroot_modules/modules.d
|
2010-09-23 16:58:05 +03:00
|
|
|
ln -sf /lib/modules/*/* /tmp/overlay/lib/modules/*/* /tmp/extroot_modules/modules
|
2011-10-28 16:10:50 +03:00
|
|
|
local modules="$(cat /tmp/extroot_modules/modules.d/* 2>/dev/null)"
|
2011-01-31 07:11:38 +02:00
|
|
|
cd /tmp/extroot_modules/modules && [ -n "$modules" ] && {
|
2011-11-02 20:38:38 +02:00
|
|
|
echo "$modules" | sed -e 's/^\([^#].*\)/insmod \.\/\1.ko/'| sh 2>&- || :
|
2010-02-27 00:46:10 +02:00
|
|
|
}
|
2010-09-23 16:58:05 +03:00
|
|
|
rm -rf /tmp/extroot_modules
|
2010-02-27 00:46:10 +02:00
|
|
|
}
|
|
|
|
|
2011-03-13 11:24:24 +02:00
|
|
|
pivot_rom() { # <new_root> <old_root>
|
|
|
|
mount -o move /proc $1/proc && \
|
|
|
|
pivot_root $1 $1$2 && {
|
|
|
|
mount -o move $2/dev /dev
|
|
|
|
mount -o move $2/tmp /tmp
|
|
|
|
mount -o move $2/sys /sys 2>&-
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|