From: jogo Date: Thu, 28 May 2015 10:48:23 +0000 (+0000) Subject: scripts/arm-magic.sh: make the generated kernels also include $IMG_PREFIX X-Git-Url: http://git.ozo.com/?a=commitdiff_plain;ds=sidebyside;h=23018b6312eff79a85ecea600fc8cdfa0557a29a;hp=4545e92c84cdcaae4181805d538c7c8419a09dcd;p=openwrt-working-2016%2F.git scripts/arm-magic.sh: make the generated kernels also include $IMG_PREFIX In r45785 ixp4xx was changed to use a common image prefix also for kernels, but the script creating them was not updated to generate the expected filenames. Fix this by letting arm-magic.sh respect $IMG_PREFIX for the output kernel file names as well. Signed-off-by: Jonas Gorski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45803 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/scripts/arm-magic.sh b/scripts/arm-magic.sh index eff9b4d414..29ec88ab2f 100755 --- a/scripts/arm-magic.sh +++ b/scripts/arm-magic.sh @@ -28,15 +28,15 @@ do hexid=$(printf %x\\n $2) if [ "$2" -lt "256" ]; then # we have a low machtypeid, we just need a "mov" (e3a) - printf "\xe3\xa0\x10\x$hexid" > $BIN_DIR/openwrt-$1-zImage + printf "\xe3\xa0\x10\x$hexid" > $BIN_DIR/$IMG_PREFIX-$1-zImage else # we have a high machtypeid, we need a "mov" (e3a) and an "orr" (e38) if [ "$2" -lt "4096" ]; then - printf "\xe3\xa0\x10\x$(echo $hexid|cut -b "2 3")\xe3\x81\x1c\x$(echo $hexid|cut -b 1)" > $BIN_DIR/openwrt-$1-zImage + printf "\xe3\xa0\x10\x$(echo $hexid|cut -b "2 3")\xe3\x81\x1c\x$(echo $hexid|cut -b 1)" > $BIN_DIR/$IMG_PREFIX-$1-zImage else - printf "\xe3\xa0\x10\x$(echo $hexid|cut -b "3 4")\xe3\x81\x1c\x$(echo $hexid|cut -b "1 2")" > $BIN_DIR/openwrt-$1-zImage + printf "\xe3\xa0\x10\x$(echo $hexid|cut -b "3 4")\xe3\x81\x1c\x$(echo $hexid|cut -b "1 2")" > $BIN_DIR/$IMG_PREFIX-$1-zImage fi fi # generate the image - cat $BIN_DIR/$IMG_PREFIX-zImage >> $BIN_DIR/openwrt-$1-zImage + cat $BIN_DIR/$IMG_PREFIX-zImage >> $BIN_DIR/$IMG_PREFIX-$1-zImage done