View Single Post
xxxxts's Avatar
Posts: 491 | Thanked: 341 times | Joined on Nov 2009 @ LA
#5
Originally Posted by Hurrian View Post
This file:

Code:
+#define CONFIG_EXTRA_ENV_SETTINGS \ +    "usbtty=cdc_acm\0" \ +    "stdin=vga\0stdout=vga\0stderr=vga\0" \ +    "setcon=setenv stdin ${con};" \ +        "setenv stdout ${con};" \ +        "setenv stderr ${con}\0" \ +    "sercon=setenv con serial; run setcon\0" \ +    "usbcon=setenv con usbtty; run setcon\0" \ +    "vgacon=setenv con vga; run setcon\0" \ +    "loadaddr=0x82000000\0" \ +    "meegoargs=setenv bootargs\0" \ +    "loadbootscript=fatload mmc 0 ${loadaddr} boot.scr\0" \ +    "bootscript=echo Running bootscript from mmc ...; " \ +        "source ${loadaddr}\0" \ +    "loaduimage=fatload mmc 0:3 ${loadaddr} uImage\0" \ +    "mmcboot=echo Booting from mmc ...; " \ +        "run meegoargs; " \ +        "bootm ${loadaddr}\0" \ +    "noloboot=echo Booting NOLO supplied kernel ...; " \ +        "setenv atags ${nolo_atagaddr};" \ +        "bootm ${nolo_kernaddr}\0" +
This is the interesting part.

Wait a bit, I'll get a u-boot image out.
I am so lost... what I am trying to do is create an image for my 16GB card with 2GB for NITDroid (U12), 6GB for MeeGo(CE 1.2.0.90.6.20110630.4.DE.2011-07-01.1), and the rest for storage (FAT32) so I can triboot. After I make this image I intend of uploading the image on here to make it easier for everyone else... this is going on an MMC not eMMC.

Last edited by xxxxts; 2011-08-28 at 23:55.