mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
[ixp4xx]: fix machtype handling above 4096
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34141 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f1ba8dbbc9
commit
84fdef3fd2
@ -2,7 +2,7 @@
|
|||||||
#
|
#
|
||||||
# Empty/wrong machtype-workaround generator
|
# Empty/wrong machtype-workaround generator
|
||||||
#
|
#
|
||||||
# Copyright (C) 2006 Imre Kaloz <kaloz@openwrt.org>
|
# Copyright (C) 2006-2012 Imre Kaloz <kaloz@openwrt.org>
|
||||||
# based on linux/arch/arm/boot/compressed/head-xscale.S
|
# based on linux/arch/arm/boot/compressed/head-xscale.S
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
@ -31,7 +31,11 @@ do
|
|||||||
printf "\xe3\xa0\x10\x$hexid" > $BIN_DIR/openwrt-$1-zImage
|
printf "\xe3\xa0\x10\x$hexid" > $BIN_DIR/openwrt-$1-zImage
|
||||||
else
|
else
|
||||||
# we have a high machtypeid, we need a "mov" (e3a) and an "orr" (e38)
|
# we have a high machtypeid, we need a "mov" (e3a) and an "orr" (e38)
|
||||||
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
|
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
|
||||||
|
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
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
# generate the image
|
# generate the image
|
||||||
cat $BIN_DIR/$IMG_PREFIX-zImage >> $BIN_DIR/openwrt-$1-zImage
|
cat $BIN_DIR/$IMG_PREFIX-zImage >> $BIN_DIR/openwrt-$1-zImage
|
||||||
|
Loading…
Reference in New Issue
Block a user