Dear TI community,
My goal is to create a custom board for the OMAP L138. I purchased a OMAP LCDK two months ago and since then i've been working with it. I read all the documentation I found as well as the wikis but after two months hitting walls i fear I still don't fully understand the important things.
For my objective is quite simple: set up an SD card with uBoot, the Linux Kernel, a FS and be able to use the USB Ethernet Gadget functionality (i want my custom board small using USB ports instead of a big ETHERNET one)
I've understood that i can't use the material provided at the DVDSDK because it's for another board configuration, right?. So far, i've been able to create the SD card with the provided tools at the omapl138_lcdk_sdk. To do this i basically:
- Compile de linux kernel 3.1.10 under ti-sdk-omapl138-lcdk-01.00.00/board-support/ following the instructions given at the wiki (btw i use the omapl138_lcdk_defconfig, otherwise it will stall when loading the kernel) selecting the Ethernet Gadget at menuconfig.
- Compile the modules
- Create and sd card using the script ti-sdk-omapl138-lcdk-01.00.00/bin/create-sdcard.sh (selecting 2 partitions and so on).
- Install the drivers in the FS at the SD card
Waiting for root device /dev/mmcblk0p2...
Wall again. The environment variables seem fine to me:
bootargs=console=ttyS2,115200n8 root=/dev/mmcblk0p2 rw rootwait ip=off
bootcmd=if mmc rescan 0; then if fatload mmc 0 0xc0600000 boot.scr; then source 0xc0600000; else fatload mmc 0 0xc0700000 uImage; bootm c0700000; fi; else si
bootdelay=3
bootfile="uImage"
ethact=DaVinci-EMAC
ethaddr=00:00:a0:00:fb:c7
stderr=serial
stdin=serial
stdout=serial
ver=U-Boot 2010.12 (May 07 2012 - 16:09:45)
Environment size: 496/65532 bytes
My question is: is it ok to download the latest version from the git repository and without doing anything compile it and try to run it on the OMAP LCDK directly without any customization? If needed what exactly should i do?
I really have a lot of enthusiasm on this project and i fear i just need that somebody points me in the right direction.