diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-09-12 21:42:38 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-09-12 21:42:38 +0000 |
commit | b87000a87088998f88b8bcb68c3bc04c0fde0050 (patch) | |
tree | 30dd6648f4cbf157c16b42930cd8e0795fd25bae /linux | |
parent | 70a66c1f28884f83fdaa3505b4dedb9f8c7d2f5a (diff) |
fix address for mtdram block - spotted by Bernado
BKrev: 4144c2ceGRJYCmI23QZT6aftpOQFrA
Diffstat (limited to 'linux')
-rw-r--r-- | linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe b/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe index b3f9f257ba..0c9d041021 100644 --- a/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe +++ b/linux/opensimpad_2.4.25-vrs2-pxa1-jpm1.oe @@ -5,7 +5,7 @@ KV = "${@oe.data.getVar('PV',d,True).split('-')[0]}" VRSV = "${@oe.data.getVar('PV',d,True).split('-')[1]}" PXAV = "${@oe.data.getVar('PV',d,True).split('-')[2]}" JPMV = "${@oe.data.getVar('PV',d,True).split('-')[3]}" -PR = "r11" +PR = "r12" FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/opensimpad-${PV}" @@ -52,7 +52,8 @@ do_configure() { mempos=`echo "obase=16; $mem * 1024 * 1024" | bc` rdsize=`echo "$rd * 1024" | bc` total=`expr $mem + $rd` - addr=`echo "obase=16; ibase=16; C000000 + $mempos" | bc` + addr=`echo "obase=16; ibase=16; C0000000 + $mempos" | bc` + if [ "$rd" == "0" ] then echo "# CONFIG_MTD_MTDRAM_SA1100 is not set" >> ${S}/.config |