as another beagle rookie, by e17 image I'm guessing you are referring
to one of the Angstrom images. If so, I've used the following for both
20080730 and 20080823 images.
The first run after creating the fresh SD multi-partition install
takes a while on a slow SD card but after that it boots right into the
GUI login pretty quickly.
I'm wondering if your HDMI-HDMI isn't the problem since it is
mentioned that the beagle puts out a DVI signal. I'm running into a
DVI LCD display. As far as the SVideo goes, you may want to create the
Diagnostic image and follow the tests on that page since it was
designed to test most or all of the beagleboard. Here are the steps/
notes I use to build that image:
partition SD card
1 = all or 1G Fat32 LBA( type c )
format SD card
sudo mkfs.msdos -F 32 /dev/mmcblk0p1
Mount the partitions
sudo mount /dev/mmcblk0p1 /media/disk-1
Copy files to partition 1
cd Projects/BeagleBoard/Diagnostics
sudo cp MLO /media/disk-1
sudo cp * /media/disk-1
Cleanup
cd /media; sudo sync; sudo umount /media/disk-1
Boot BeagleBoard with the SD installed
setenv bootargs console=ttyS2,115200n8 ramdisk_size=8192 root=/
dev/ram0 rw rootfstype=ext2 initrd=0x81600000,8M nohz=0ff
setenv bootcmd 'mmcinit;fatload mmc 0 0x80300000
uImage;fatload mmc 0 0x81600000 rd-ext2.bin;bootm 0x80300000';
run bootcmd
USB OTH
with a MINI-B connector, short pin 4 to GND on the OTG port
during boot while the HUB is connected
boot the kernel as listed above
you should see OTG mode detected in early boot process
evtest /dev/input/event? should show keyboard or mouse data
Audio
aplay -t wav -c 2 -r 44100 -f S16_LE -v hohomy~1.wav
Video
stream_video
I note some diligent copying below that seems suspect...
as another beagle rookie, by e17 image I'm guessing you are referring
to one of the Angstrom images. If so, I've used the following for both
20080730 and 20080823 images.
The first run after creating the fresh SD multi-partition install
takes a while on a slow SD card but after that it boots right into the
GUI login pretty quickly.
I'm wondering if your HDMI-HDMI isn't the problem since it is
mentioned that the beagle puts out a DVI signal. I'm running into a
DVI LCD display. As far as the SVideo goes, you may want to create the
Diagnostic image and follow the tests on that page since it was
designed to test most or all of the beagleboard. Here are the steps/
notes I use to build that image:
As a Linux kernel newbie, I don't know what nohz does (or in this case
doesn't do).
Here's are the u-boot commands I use to boot Ångström with reasonably
good success:
in case your display is an HDTV you may need to set the HDMI timing
to 60Hz - see separate thread on this forum. LCD Monitor with DVI
input gives you a wide range of display timings.
Good one Torquil. Because he mentioned HDMI-HDMI cable, it is probably
as you mentioned and timing is the issue since he says he sees the
beagle splash but nothing once X starts. Good catch.