|
|
@ -1,17 +1,15 @@
|
|
|
|
#!/bin/bash
|
|
|
|
#!/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
|
|
|
|
#http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=tree;f=arch/arm/boot/dts;hb=refs/tags/v3.8
|
|
|
|
# --dtb imx51-babbage (Freescale i.MX51 Babbage Board:supported)
|
|
|
|
# --dtb imx51-babbage (Freescale i.MX51 Babbage Board:supported)
|
|
|
|
|
|
|
|
|
|
|
|
board="MX51EVK"
|
|
|
|
board="MX51EVK"
|
|
|
|
SYSTEM="mx51evk"
|
|
|
|
SYSTEM="mx51evk"
|
|
|
|
|
|
|
|
|
|
|
|
#Bootloader: http://rcn-ee.net/deb/tools/latest/bootloader-ng
|
|
|
|
#Bootloader:
|
|
|
|
#ABI2:${board}:SPL http://rcn-ee.net/deb/tools/beagleboard/MLO-beagleboard-v2012.10-r1
|
|
|
|
|
|
|
|
#ABI2:${board}:BOOT http://rcn-ee.net/deb/tools/beagleboard/u-boot-beagleboard-v2012.10-r1.img
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bootloader_http="http://rcn-ee.net/deb/tools/latest/"
|
|
|
|
bootloader_http="http://rcn-ee.net/deb/tools/latest/"
|
|
|
|
bootloader_latest_file="bootloader-ng"
|
|
|
|
bootloader_latest_file="bootloader-ng"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Bootloader Partition:
|
|
|
|
bootloader_location="dd_uboot_boot"
|
|
|
|
bootloader_location="dd_uboot_boot"
|
|
|
|
dd_uboot_seek="1"
|
|
|
|
dd_uboot_seek="1"
|
|
|
|
dd_uboot_bs="1024"
|
|
|
|
dd_uboot_bs="1024"
|
|
|
@ -20,18 +18,21 @@ boot_startmb="2"
|
|
|
|
unset spl_name
|
|
|
|
unset spl_name
|
|
|
|
boot_name="u-boot.imx"
|
|
|
|
boot_name="u-boot.imx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Bootloader: u-boot settings
|
|
|
|
boot_image="bootz"
|
|
|
|
boot_image="bootz"
|
|
|
|
boot_script="uEnv.txt"
|
|
|
|
boot_script="uEnv.txt"
|
|
|
|
boot_fstype="ext2"
|
|
|
|
boot_fstype="ext2"
|
|
|
|
uboot_SCRIPT_ENTRY="loaduimage"
|
|
|
|
uboot_SCRIPT_ENTRY="loaduimage"
|
|
|
|
uboot_CMD_LOAD="load"
|
|
|
|
uboot_CMD_LOAD="load"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Kernel:
|
|
|
|
#http://rcn-ee.net/deb/wheezy-armhf/LATEST-imx
|
|
|
|
#http://rcn-ee.net/deb/wheezy-armhf/LATEST-imx
|
|
|
|
kernel_subarch="imx"
|
|
|
|
kernel_subarch="imx"
|
|
|
|
kernel_repo="STABLE"
|
|
|
|
kernel_repo="STABLE"
|
|
|
|
|
|
|
|
|
|
|
|
usbnet_mem=
|
|
|
|
usbnet_mem=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#Kernel: Bootloader Settings:
|
|
|
|
kernel_addr="0x90010000"
|
|
|
|
kernel_addr="0x90010000"
|
|
|
|
initrd_addr="0x92000000"
|
|
|
|
initrd_addr="0x92000000"
|
|
|
|
load_addr="0x90008000"
|
|
|
|
load_addr="0x90008000"
|
|
|
|