aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files
diff options
context:
space:
mode:
authorRodrigo Balerdi <lanchon@gmail.com>2022-04-15 00:53:27 -0300
committerDaniel Golle <daniel@makrotopia.org>2022-04-19 16:28:25 +0100
commit1e191adb20abe428d5feb128ce28f1457ae5110b (patch)
tree4bbb34b45439c083fc9820ee74bf1b4fd393b9f9 /package/base-files/files
parente3238a486f8102bdca3ea12091ef2425eabcd13e (diff)
downloadupstream-1e191adb20abe428d5feb128ce28f1457ae5110b.tar.gz
upstream-1e191adb20abe428d5feb128ce28f1457ae5110b.tar.bz2
upstream-1e191adb20abe428d5feb128ce28f1457ae5110b.zip
base-files: fix nand sysupgrade comments
Erroneous comments possibly applied to an earlier code revision. Signed-off-by: Rodrigo Balerdi <lanchon@gmail.com>
Diffstat (limited to 'package/base-files/files')
-rw-r--r--package/base-files/files/lib/upgrade/nand.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/base-files/files/lib/upgrade/nand.sh b/package/base-files/files/lib/upgrade/nand.sh
index ec1335cb2c..b5c982b272 100644
--- a/package/base-files/files/lib/upgrade/nand.sh
+++ b/package/base-files/files/lib/upgrade/nand.sh
@@ -182,7 +182,7 @@ nand_upgrade_prepare_ubi() {
[ "$root_ubivol" ] && ubirmvol /dev/$ubidev -N $CI_ROOTPART || :
[ "$data_ubivol" ] && ubirmvol /dev/$ubidev -N rootfs_data || :
- # update kernel
+ # create kernel vol
if [ -n "$kernel_length" ]; then
if ! ubimkvol /dev/$ubidev -N $CI_KERNPART -s $kernel_length; then
echo "cannot create kernel volume"
@@ -190,7 +190,7 @@ nand_upgrade_prepare_ubi() {
fi
fi
- # update rootfs
+ # create rootfs vol
if [ -n "$rootfs_length" ]; then
local rootfs_size_param
if [ "$rootfs_type" = "ubifs" ]; then
@@ -204,7 +204,7 @@ nand_upgrade_prepare_ubi() {
fi
fi
- # create rootfs_data for non-ubifs rootfs
+ # create rootfs_data vol for non-ubifs rootfs
if [ "$rootfs_type" != "ubifs" ]; then
local rootfs_data_size_param="-m"
if [ -n "$rootfs_data_max" ]; then