diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-04-14 14:36:41 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-04-14 14:36:41 +0000 |
commit | 9ae534567be92a942e9e84d3391c7a359590c7a9 (patch) | |
tree | de685554b08db83f33e90323508dd5570aea1ee7 /scripts | |
parent | 4a2059281bd75ad474751b9a7bc706fc6cc120c9 (diff) |
target/ixp4xx: fix image building after r20834 (closes: #7157)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20854 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/arm-magic.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/arm-magic.sh b/scripts/arm-magic.sh index e8f41d337..8bc35c1d4 100755 --- a/scripts/arm-magic.sh +++ b/scripts/arm-magic.sh @@ -34,5 +34,5 @@ do 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 fi # generate the image - cat $BIN_DIR/openwrt-ixp4xx-zImage >> $BIN_DIR/openwrt-$1-zImage + cat $BIN_DIR/$IMG_PREFIX-zImage >> $BIN_DIR/openwrt-$1-zImage done |