aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Kocialkowski2014-12-14 18:20:26 +0100
committerPaul Kocialkowski2015-07-15 15:06:15 +0200
commit66f1cd3fbc186ecd8332c297f709254c335571c9 (patch)
tree9ad1b50aa76ada30f480e65c5f13945db133a81a
parenta3f50cdd4bb929b303cb054ef3a9d2042b695e46 (diff)
WIP: Proper boot.img base address that allows booting
-rw-r--r--include/configs/sniper.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/include/configs/sniper.h b/include/configs/sniper.h
index d457f02b2b0..d561c7e01f5 100644
--- a/include/configs/sniper.h
+++ b/include/configs/sniper.h
@@ -218,18 +218,16 @@
"setenv stdout ${con};" \
"setenv stderr ${con}\0" \
"usbcon=setenv con usbtty; run setcon\0" \
- "bootargs=console=ttyO2,115200n8 earlyprintk mem=512M init=/init videoout=omap24xxvout omap_vout.video1_numbuffers=6 omap_vout.vid1_static_vrfb_alloc=y vram=16M omapfb.vram=0:5M lpj=2334720 fuelgauge=g androidboot.hardware=blackg muic_state=0 thermal_fakemode=0 CRC=0x6f889a29 root=/dev/ram0 rw initrd=0x81000000,16M ramdisk_size=16384"
+ "bootargs=console=ttyO2,115200n8 earlyprintk mem=512M init=/init videoout=omap24xxvout omap_vout.video1_numbuffers=6 omap_vout.vid1_static_vrfb_alloc=y vram=16M omapfb.vram=0:5M lpj=2334720 fuelgauge=g androidboot.hardware=blackg muic_state=0 thermal_fakemode=0 CRC=0x6f889a29" /*root=/dev/ram0 rw initrd=0x81000000,16M ramdisk_size=16384"*/
#define CONFIG_BOOTCOMMAND \
- "mmc list;" \
- "mmc dev 0;" \
- "mmc part;" \
- "mmc dev 1;" \
- "mmc part;" \
- "fastboot;" \
- "fatload mmc 0 0x80400000 boot.img;" \
+ "i2c dev 0;" \
+ "i2c probe;" \
+ "i2c dev 1;" \
+ "i2c probe;" \
+ "fatload mmc 0 0x81000000 boot.img;" \
"print bootargs;" \
- "bootm 0x80400000"
+ "bootm 0x81000000"
#define CONFIG_AUTO_COMPLETE 1