You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
So, the plan for <device>.conf.. Ignore [] seperaters when creating your own *.conf...
|
|
|
|
[(1) Use the *.dts name, for the file name, and --dtb call...]
|
|
[For the Beagle xM in v3.7: omap3-beagle-xm.dts, so file will be "omap3-beagle-xm.conf"]
|
|
|
|
#!/bin/bash
|
|
#Reference: http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=tree;f=arch/arm/boot/dts;hb=refs/tags/v3.7
|
|
# --dtb omap3-beagle-xm (BeagleBoard xM:supported)
|
|
|
|
[(2) Bootloader TI/OMAP]
|
|
[FIXME: website address, should be defined as a variable...]
|
|
[For the xM: http://rcn-ee.net/deb/tools/latest/bootloader-ng ]
|
|
[format of file:]
|
|
[ABI2:BEAGLEBOARD_XM:SPL http://rcn-ee.net/deb/tools/beagleboard/MLO-beagleboard-v2012.10-r1]
|
|
[ABI2:BEAGLEBOARD_XM:BOOT http://rcn-ee.net/deb/tools/beagleboard/u-boot-beagleboard-v2012.10-r1.img]
|
|
|
|
#Bootloader: http://rcn-ee.net/deb/tools/latest/bootloader-ng
|
|
board="BEAGLEBOARD_XM"
|
|
|
|
[(3) Partition Setup]
|
|
[omap and a mainline u-boot]
|
|
|
|
bootloader_location="fatfs_boot"
|
|
boot_partition_size="64"
|
|
spl_name="MLO"
|
|
boot_name="u-boot.img"
|
|
|
|
boot_image="bootz"
|
|
boot_script="uEnv.txt"
|
|
boot_fstype="fat"
|
|
|
|
[(3) Partition Setup]
|
|
[imx and a mainline u-boot]
|
|
|
|
bootloader_location="dd_uboot_boot"
|
|
dd_uboot_seek="1"
|
|
dd_uboot_bs="1024"
|
|
boot_partition_size="64"
|
|
boot_startmb="2"
|
|
unset spl_name
|
|
boot_name="u-boot.imx"
|
|
|
|
boot_image="bootz"
|
|
boot_script="uEnv.txt"
|
|
boot_fstype="ext2"
|
|
|
|
[(4) Kernel Setup]
|
|
|
|
#http://rcn-ee.net/deb/wheezy-armhf/LATEST-omap-psp
|
|
kernel_subarch="omap-psp"
|
|
kernel_repo="TESTING"
|
|
|
|
kernel_addr="0x80300000"
|
|
initrd_addr="0x81600000"
|
|
load_addr="0x80008000"
|
|
dtb_addr="0x815f0000"
|
|
dtb_file="am335x-bone.dtb"
|
|
|
|
|
|
[more to come...]
|