Hi
I am able to run android on beagleboard with console mode. I dont have a lcd screen with dvi port but it has hdmi port. I want to know what boot script should i use to get it running.
I am using this script:
#!/bin/sh
cat < boot.cmd
if fatload mmc 0 80200000 uImage
then
echo ***** Kernel: /dev/mmcblk0p1/uImage *****
fi
echo ***** RootFS: /dev/mmcblk0p2 *****
setenv bootargs ‘console=ttyS0,115200n8 androidboot.console=ttyS0 mem=80M root=/dev/mmcblk0p2 rw rootfstype=ext3 rootdelay=1 init=/init ip=off mpurate=720 omap_vout.vid1_static_vrfb_alloc=y omapfb.mode=dvi:1280x720MR-16@60’
bootm 0x80200000
EOF
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n ‘Execute uImage.bin’ -d boot.cmd boot.scr
but i see android logo and on the console it says uncompressing kernel, what changes should i make in boot script to get beagleboard-xm running Android on LCD over HDMI