mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
procd: fix nand.sh kernel_length typo
sysupgrade otherwise skips kernel part on devices which got kernel in ubi due to kern_length being undefined, kernel_length is being used instead. Signed-off-by: Daniel Golle <daniel@makrotopia.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41327 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
. /lib/functions.sh
|
||||
|
||||
# 'data' partition on NAND contains UBI
|
||||
# 'ubi' partition on NAND contains UBI
|
||||
CI_UBIPART="ubi"
|
||||
|
||||
nand_find_volume() {
|
||||
@@ -242,7 +242,7 @@ nand_upgrade_tar() {
|
||||
[ "$has_kernel" = "1" ] && {
|
||||
local kern_ubivol="$(nand_find_volume $ubidev kernel)"
|
||||
tar xf $tar_file sysupgrade-$board_name/kernel -O | \
|
||||
ubiupdatevol /dev/$kern_ubivol -s $kern_length -
|
||||
ubiupdatevol /dev/$kern_ubivol -s $kernel_length -
|
||||
}
|
||||
|
||||
local root_ubivol="$(nand_find_volume $ubidev rootfs)"
|
||||
|
||||
Reference in New Issue
Block a user