diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-11-14 19:38:54 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-11-14 19:38:54 +0000 |
commit | ff17114ba17f8e7c8b256f6f3a04640062a6d797 (patch) | |
tree | ab8f9f8d43c486022319ba32d821ecba29e71d15 /package/base-files/files/sbin | |
parent | 9aca892304c49523c620ed964f2c0b3468a57667 (diff) | |
download | upstream-ff17114ba17f8e7c8b256f6f3a04640062a6d797.tar.gz upstream-ff17114ba17f8e7c8b256f6f3a04640062a6d797.tar.bz2 upstream-ff17114ba17f8e7c8b256f6f3a04640062a6d797.zip |
ar71xx: Unifi AP Pro sysupgrade patch
The current implementation of mtd will not append the backup
file created by sysupgrade to the correct partition, as mtd will append
the data to first jffs2 partition it finds. As the kernel is also
stored on a jffs2 partition (which resides before the overlay
partition), the data will be appended to this partition.
To fix this problem, a new option
-s <number> skip the first n bytes when appending data to the jffs2 partiton, defaults to "0"
is added to mtd.
Signed-off-by: Peter Wagner <tripolar@gmx.at>
SVN-Revision: 38807
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-x | package/base-files/files/sbin/sysupgrade | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index eb5ab035c6..14b09eb0b5 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -4,6 +4,7 @@ # initialize defaults RAMFS_COPY_BIN="" # extra programs for temporary ramfs root RAMFS_COPY_DATA="" # extra data files +export MTD_CONFIG_ARGS="" export INTERACTIVE=0 export VERBOSE=1 export SAVE_CONFIG=1 |