diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 01:23:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 01:23:36 +0000 |
commit | 68ca8e7818356c0dbf2e0400b177139a656791c0 (patch) | |
tree | e8147a0b512f9bf0e42a6ac3f1a693b09c7c1971 /package/base-files/files/sbin/mount_root | |
parent | a256c81dd99148e289dc7a73c01b9108701ad9d3 (diff) | |
download | upstream-68ca8e7818356c0dbf2e0400b177139a656791c0.tar.gz upstream-68ca8e7818356c0dbf2e0400b177139a656791c0.tar.bz2 upstream-68ca8e7818356c0dbf2e0400b177139a656791c0.zip |
make squashfs overlay support more generic and integrate it for x86-2.6
SVN-Revision: 6450
Diffstat (limited to 'package/base-files/files/sbin/mount_root')
-rwxr-xr-x | package/base-files/files/sbin/mount_root | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/package/base-files/files/sbin/mount_root b/package/base-files/files/sbin/mount_root index 81660f0067..607877c643 100755 --- a/package/base-files/files/sbin/mount_root +++ b/package/base-files/files/sbin/mount_root @@ -1,10 +1,21 @@ #!/bin/sh # Copyright (C) 2006 OpenWrt.org +. /etc/functions.sh mount none /proc -t proc size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo) mount none /tmp -t tmpfs -o size=$size,nosuid,nodev,mode=1777 + +grep rootfs /proc/mtd >/dev/null 2>/dev/null && { + mtd unlock rootfs + grep rootfs_data /proc/mtd >/dev/null 2>/dev/null && { + . /bin/firstboot + echo "switching to jffs2" + mount "$(find_mtd_part rootfs_data)" /jffs -t jffs2 + fopivot /jffs /rom + } +} || mount -o remount,rw /dev/root / + mkdir -p /dev/pts mount none /dev/pts -t devpts -mount -t sysfs none /sys 2>&- -mount -o remount,rw /dev/root / +grep sysfs /proc/filesystems >/dev/null && mount -t sysfs none /sys 2>&- |