aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkits.sh
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2018-03-05 09:51:47 +0100
committerMathias Kresin <dev@kresin.me>2018-03-17 08:09:04 +0100
commit1b773a46c2023ef32ddbbc3835e20b6c216b184e (patch)
tree3b9ec159386fa5d6a6df38fb9aad9df453a428a3 /scripts/mkits.sh
parentdbdc26ba33c19274e54b92e273073117b9e89ccb (diff)
downloadupstream-1b773a46c2023ef32ddbbc3835e20b6c216b184e.tar.gz
upstream-1b773a46c2023ef32ddbbc3835e20b6c216b184e.tar.bz2
upstream-1b773a46c2023ef32ddbbc3835e20b6c216b184e.zip
build: Allow to change the FIT config section name
Some devices only boot when a special config is found in the image and completely ignore the default entry during the selection. These devices can now use the variable DEVICE_DTS_CONFIG in their device image definition. Signed-off-by: Sven Eckelmann <sven@narfation.org>
Diffstat (limited to 'scripts/mkits.sh')
-rwxr-xr-xscripts/mkits.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/mkits.sh b/scripts/mkits.sh
index 8857996eba..5d836be8e4 100755
--- a/scripts/mkits.sh
+++ b/scripts/mkits.sh
@@ -19,6 +19,7 @@ usage() {
"-v version -k kernel [-D name -d dtb] -o its_file"
echo -e "\t-A ==> set architecture to 'arch'"
echo -e "\t-C ==> set compression type 'comp'"
+ echo -e "\t-c ==> set config name 'config'"
echo -e "\t-a ==> set load address to 'addr' (hex)"
echo -e "\t-e ==> set entry point to 'entry' (hex)"
echo -e "\t-v ==> set kernel version to 'version'"
@@ -29,11 +30,12 @@ usage() {
exit 1
}
-while getopts ":A:a:C:D:d:e:k:o:v:" OPTION
+while getopts ":A:a:c:C:D:d:e:k:o:v:" OPTION
do
case $OPTION in
A ) ARCH=$OPTARG;;
a ) LOAD_ADDR=$OPTARG;;
+ c ) CONFIG=$OPTARG;;
C ) COMPRESS=$OPTARG;;
D ) DEVICE=$OPTARG;;
d ) DTB=$OPTARG;;
@@ -49,7 +51,7 @@ done
# Make sure user entered all required parameters
if [ -z "${ARCH}" ] || [ -z "${COMPRESS}" ] || [ -z "${LOAD_ADDR}" ] || \
[ -z "${ENTRY_ADDR}" ] || [ -z "${VERSION}" ] || [ -z "${KERNEL}" ] || \
- [ -z "${OUTPUT}" ]; then
+ [ -z "${OUTPUT}" ] || [ -z "${CONFIG}" ]; then
usage
fi
@@ -104,8 +106,8 @@ ${FDT}
};
configurations {
- default = \"config@1\";
- config@1 {
+ default = \"${CONFIG}\";
+ ${CONFIG} {
description = \"OpenWrt\";
kernel = \"kernel@1\";
fdt = \"fdt@1\";