Просмотр исходного кода

bcm53xx: sysupgrade: check if new kernel fits partition size

Signed-off-by: Rafał Miłecki <[email protected]>

SVN-Revision: 45547
Rafał Miłecki 10 лет назад
Родитель
Сommit
866fe3895d
1 измененных файлов с 7 добавлено и 2 удалено
  1. 7 2
      target/linux/bcm53xx/base-files/lib/upgrade/platform.sh

+ 7 - 2
target/linux/bcm53xx/base-files/lib/upgrade/platform.sh

@@ -152,12 +152,17 @@ platform_pre_upgrade() {
 		echo "Unable to find \"linux\" partition size"
 		exit 1
 	}
-	linux_length=$((0x$linux_length + 28))
+	linux_length=$((0x$linux_length))
+	local kernel_length=$(wc -c $dir/kernel | cut -d ' ' -f 1)
+	[ $kernel_length -gt $linux_length ] && {
+		echo "New kernel doesn't fit \"linux\" partition."
+		return
+	}
 	rm -f /tmp/null.bin
 	rm -f /tmp/kernel.trx
 	touch /tmp/null.bin
 	otrx create /tmp/kernel.trx \
-		-f $dir/kernel -b $linux_length \
+		-f $dir/kernel -b $(($linux_length + 28)) \
 		-f /tmp/null.bin
 
 	# Prepare UBI image (drop unwanted extra blocks)