5 ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
6 libs() { ldd $* | awk '{print $3}'; }
8 install_file() { # <file> [ <file> ... ]
10 dest="$RAM_ROOT/$file"
11 [ -f $file -a ! -f $dest ] && {
12 dir="$(dirname $dest)"
19 install_bin() { # <file> [ <symlink> ... ]
22 [ -x "$src" ] && files="$src $(libs $src)"
24 [ -e /lib/ld.so.1 ] && {
25 install_file /lib/ld.so.1
28 for link in "$@"; do {
29 dest="$RAM_ROOT/$link"
30 dir="$(dirname $dest)"
32 [ -f "$dest" ] || ln -s $src $dest
36 supivot() { # <new_root> <old_root>
37 /bin/mount | grep "on $1 type" 2>&- 1>&- || /bin/mount -o bind $1 $1
38 mkdir -p $1$2 $1/proc $1/sys $1/dev $1/tmp $1/overlay && \
39 /bin/mount -o noatime,move /proc $1/proc && \
40 pivot_root $1 $1$2 || {
45 /bin/mount -o noatime,move $2/sys /sys
46 /bin/mount -o noatime,move $2/dev /dev
47 /bin/mount -o noatime,move $2/tmp /tmp
48 /bin/mount -o noatime,move $2/overlay /overlay 2>&-
52 run_ramfs() { # <command> [...]
53 install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount \
54 /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd \
55 /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" \
56 /bin/dd /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump \
57 /bin/sleep /bin/zcat /usr/bin/bzcat /usr/bin/printf /usr/bin/wc \
58 /bin/cut /usr/bin/printf /bin/sync
62 install_bin /sbin/mount_root
63 install_bin /sbin/snapshot
64 install_bin /sbin/snapshot_tool
65 install_bin /usr/sbin/ubiupdatevol
66 install_bin /usr/sbin/ubiattach
67 install_bin /usr/sbin/ubidetach
68 install_bin /usr/sbin/ubirsvol
69 install_bin /usr/sbin/ubirmvol
70 install_bin /usr/sbin/ubimkvol
71 for file in $RAMFS_COPY_BIN; do
72 install_bin ${file//:/ }
74 install_file /etc/resolv.conf /lib/functions.sh /lib/functions/*.sh /lib/upgrade/*.sh $RAMFS_COPY_DATA
76 supivot $RAM_ROOT /mnt || {
77 echo "Failed to switch over to ramfs. Please reboot."
81 /bin/mount -o remount,ro /mnt
84 grep /overlay /proc/mounts > /dev/null && {
85 /bin/mount -o noatime,remount,ro /overlay
86 /bin/umount -l /overlay
89 # spawn a new shell from ramdisk to reduce the probability of cache issues
90 exec /bin/busybox ash -c "$*"
93 kill_remaining() { # [ <signal> ]
94 local sig="${1:-TERM}"
95 echo -n "Sending $sig to remaining processes ... "
98 for stat in /proc/[0-9]*/stat; do
99 [ -f "$stat" ] || continue
101 local pid name state ppid rest
102 read pid name state ppid rest < $stat
103 name="${name#(}"; name="${name%)}"
106 read cmdline < /proc/$pid/cmdline
108 # Skip kernel threads
109 [ -n "$cmdline" ] || continue
112 # Skip essential services
113 *procd*|*ash*|*init*|*watchdog*|*ssh*|*dropbear*|*telnet*|*login*|*hostapd*|*wpa_supplicant*|*nas*) : ;;
117 if [ $pid -ne $$ ] && [ $ppid -ne $$ ]; then
119 kill -$sig $pid 2>/dev/null
128 local arg="$1"; shift
135 local default="$1"; shift;
136 local answer="$default"
138 [ "$INTERACTIVE" -eq 1 ] && {
140 0) echo -n "$* (y/N): ";;
141 *) echo -n "$* (Y/n): ";;
147 *) answer="$default";;
154 [ "$VERBOSE" -ge 1 ] && echo "$@"
158 /bin/mount | awk '($3 ~ /^\/$/) && ($5 !~ /rootfs/) { print $5 }'
161 get_image() { # <source> [ <command> ]
167 http://*|ftp://*) cmd="wget -O- -q";;
170 if [ -z "$conc" ]; then
171 local magic="$(eval $cmd $from 2>/dev/null | dd bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')"
178 eval "$cmd $from 2>/dev/null ${conc:+| $conc}"
182 get_image "$@" | dd bs=2 count=1 2>/dev/null | hexdump -v -n 2 -e '1/1 "%02x"'
186 get_image "$@" | dd bs=4 count=1 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"'
189 jffs2_copy_config() {
190 if grep rootfs_data /proc/mtd >/dev/null; then
192 mtd -e rootfs_data jffs2write "$CONF_TAR" rootfs_data
195 mtd jffs2write "$CONF_TAR" rootfs
199 default_do_upgrade() {
201 if [ "$SAVE_CONFIG" -eq 1 ]; then
202 get_image "$1" | mtd $MTD_CONFIG_ARGS -j "$CONF_TAR" write - "${PART_NAME:-image}"
204 get_image "$1" | mtd write - "${PART_NAME:-image}"
209 v "Performing system upgrade..."
210 if type 'platform_do_upgrade' >/dev/null 2>/dev/null; then
211 platform_do_upgrade "$ARGV"
213 default_do_upgrade "$ARGV"
216 if [ "$SAVE_CONFIG" -eq 1 ] && type 'platform_copy_config' >/dev/null 2>/dev/null; then
220 v "Upgrade completed"
221 [ -n "$DELAY" ] && sleep "$DELAY"
222 ask_bool 1 "Reboot" && {
223 v "Rebooting system..."
226 echo b 2>/dev/null >/proc/sysrq-trigger