From: Gabor Juhos Date: Thu, 27 Oct 2011 07:54:49 +0000 (+0000) Subject: base-files/sysupgrade: add more busybox applet symlinks to ramdisk X-Git-Tag: reboot~15767 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=4cc48089c75b377e6f5be3fca2bb242486fb579f;hp=d02f22fea1653a83fa053cc86b73bc82ad6759c3;p=openwrt%2Fopenwrt.git base-files/sysupgrade: add more busybox applet symlinks to ramdisk Adds symlinks for printf and wc to make life happier in the sysupgrade ramdisk. Also make code more readable by escaping that overly long line. Signed-off-by: Daniel Golle SVN-Revision: 28616 --- diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 002d51674d..7e895f1d31 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=83 +PKG_RELEASE:=84 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=opkg/host diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh index 11e1b2cdfa..65ce816db2 100644 --- a/package/base-files/files/lib/upgrade/common.sh +++ b/package/base-files/files/lib/upgrade/common.sh @@ -48,7 +48,12 @@ pivot() { # } run_ramfs() { # [...] - install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump /bin/sleep /bin/zcat /usr/bin/bzcat + install_bin /bin/busybox /bin/ash /bin/sh /bin/mount /bin/umount \ + /sbin/pivot_root /usr/bin/wget /sbin/reboot /bin/sync /bin/dd \ + /bin/grep /bin/cp /bin/mv /bin/tar /usr/bin/md5sum "/usr/bin/[" \ + /bin/vi /bin/ls /bin/cat /usr/bin/awk /usr/bin/hexdump \ + /bin/sleep /bin/zcat /usr/bin/bzcat /usr/bin/printf /usr/bin/wc + install_bin /sbin/mtd for file in $RAMFS_COPY_BIN; do install_bin $file