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.
81 lines
2.1 KiB
81 lines
2.1 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
|
|
#http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=tree;f=arch/arm/boot/dts;hb=refs/tags/v3.8-rc5
|
|
# --dtb am335x-bone (BeagleBone (v3.8.x))
|
|
|
|
board="BEAGLEBONE_A"
|
|
|
|
[(2) Bootloader TI/OMAP]
|
|
[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:
|
|
bootloader_http="http://rcn-ee.net/deb/tools/latest/"
|
|
bootloader_latest_file="bootloader-ng"
|
|
|
|
[(3) Partition Setup]
|
|
[omap and a mainline u-boot]
|
|
|
|
#Bootloader Partition:
|
|
bootloader_location="fatfs_boot"
|
|
boot_partition_size="64"
|
|
spl_name="MLO"
|
|
boot_name="u-boot.img"
|
|
|
|
#Bootloader: u-boot settings
|
|
boot_image="bootz"
|
|
boot_script="uEnv.txt"
|
|
boot_fstype="fat"
|
|
uboot_SCRIPT_ENTRY="loaduimage"
|
|
uboot_CMD_LOAD="fatload"
|
|
|
|
[(3) Partition Setup]
|
|
[imx and a mainline u-boot]
|
|
|
|
#Bootloader Partition:
|
|
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"
|
|
|
|
#Bootloader: u-boot settings
|
|
boot_image="bootz"
|
|
boot_script="uEnv.txt"
|
|
boot_fstype="ext2"
|
|
uboot_SCRIPT_ENTRY="loaduimage"
|
|
uboot_CMD_LOAD="ext2load"
|
|
|
|
[(4) Kernel Setup]
|
|
[Raw Deb file or:]
|
|
[ABI:1 STABLE http://rcn-ee.net/deb/wheezy-armhf/v3.7.4-x8/install-me.sh]
|
|
[ABI:1 EXPERIMENTAL http://rcn-ee.net/deb/wheezy-armhf/v3.8.0-rc4-d0/install-me.sh]
|
|
[ABI:1 TESTING http://rcn-ee.net/deb/wheezy-armhf/v3.8.0-rc5-d1/install-me.sh]
|
|
|
|
#Kernel:
|
|
#http://rcn-ee.net/deb/wheezy-armhf/LATEST-omap-psp
|
|
kernel_subarch="omap-psp"
|
|
kernel_repo="TESTING"
|
|
|
|
#Kernel: Bootloader Settings:
|
|
kernel_addr="0x80300000"
|
|
initrd_addr="0x81600000"
|
|
load_addr="0x80008000"
|
|
dtb_addr="0x815f0000"
|
|
dtb_file="am335x-bone.dtb"
|
|
need_dtbs=1
|
|
need_am335x_firmware=1
|
|
|
|
SERIAL="ttyO0"
|
|
SERIAL_CONSOLE="${SERIAL},115200n8"
|
|
|
|
[more to come...]
|