procd: nand: make it possible to configure kernel and ubi partition
authorChristian Lamparter <chunkeey@gmail.com>
Sun, 20 Nov 2016 02:33:03 +0000 (03:33 +0100)
committerJohn Crispin <john@phrozen.org>
Wed, 22 Mar 2017 08:45:18 +0000 (09:45 +0100)
With this patch, the nand.sh script no longer overwrites
CI_KERNELPART and CI_UBIPART if they have been set before.

This allows platforms specify alternative values for these
variables.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
package/system/procd/files/nand.sh

index ebaaf2aa16009cc1431dbb79ba9f689c8b636069..01dba616444e91dd32834bb98e97f5ff832318bc 100644 (file)
@@ -5,10 +5,10 @@
 . /lib/functions.sh
 
 # 'kernel' partition on NAND contains the kernel
-CI_KERNPART="kernel"
+CI_KERNPART="${CI_KERNPART:-kernel}"
 
 # 'ubi' partition on NAND contains UBI
-CI_UBIPART="ubi"
+CI_UBIPART="${CI_UBIPART:-ubi}"
 
 ubi_mknod() {
        local dir="$1"