|
UsingPreBuiltImages
This page discusses using the pre-built 0xdroid images on Beagleboard/Devkit8000 quickly.
IntroductionWe provide the pre-built images and also come with a happy Installer. We can use the images and then get the newest Android in Beagleboard or Devkit8000. It would take only few minutes to achieve it. Besides these pre-buit images, we can build from scratch and gain the images too. Obtain Prebult ImagesThere are two kinds of pre-built images. One is official released images (stable) and the other one is daily build images (experimental). You can download the pre-built images from 0xlab download website and then follow the instructions to install into Beagleboard/Devkit8000 environment. NOTE: for newer Beagleboard (rev C4), you need to rename "uImage.bin" to uImage (on the SD card) for the default bootloader to pick it up. (naming problem) InstallationMake sure that Beagleboard hardware is properly set up first. Check wiki page hardware_beagleboard in advance. You can either use automated approach from Installer (for dummies)or go through the details (for geeks). for dummies
0xdroid release 0x4~0x5Beagle board
Devkit8000The stock bootloader uses a old machine id that does not match upstream registry. So new users have to reflash a newer bootloader. We provide some key events for Android UI. Also, make sure what size of panel you are using ! You probably need to edit install.conf file.
cd /media/sdb1 unzip ~/devkit8k-eclair-0x?.zip mmcinit;mmc init fatload mmc 0 80300000 flash-uboot.bin go 80300000 boot NOTE: These steps only have to do once. After the bootloader is updated, the subsequence re-install will be as simple as beagleboard. 0xdroid release 0x1~0x3Beagle board
Format SD card instructions under GNU/Linux
dmesg | tail You should see something like -scsi 5:0:0:0: Direct-Access Multi Flash Reader 1.00 PQ: 0 ANSI: 0 sd 5:0:0:0: Attached scsi generic sg2 type 0 usb-storage: device scan complete sd 5:0:0:0: [sdb] Attached SCSI removable disk sd 5:0:0:0: [sdb] 3862528 512-byte logical blocks: (1.97 GB/1.84 GiB) sd 5:0:0:0: [sdb] Assuming drive cache: write through sd 5:0:0:0: [sdb] Assuming drive cache: write through sdb: sdb1 sdb2If you are using the built-in SD/MMC slot, the device name would be /dev/mmcblk? sudo fdisk /dev/mmcblk0 orsudo fdisk /dev/sdb
sudo mkfs.vfat -n DISK_INSTALLER /dev/mmcblk0p1 orsudo mkfs.vfat -n DISK_INSTALLER /dev/sdb1 for geeksCheck wiki page boot_nand as reference. | ||||||||||