Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 2c9421a7 authored by Robert Nelson's avatar Robert Nelson
Browse files

dtb: fix mx53loco


Signed-off-by: default avatarRobert Nelson <robertcnelson@gmail.com>
parent 99f4811c
No related merge requests found
#!/bin/bash #!/bin/bash
# --dtb mx53loco (mx53loco:supported) # --dtb dt-mx53loco (mx53loco:supported)
#Bootloader:
conf_board="mx53loco"
conf_bl_http="https://rcn-ee.net/deb/tools/latest"
conf_bl_listfile="bootloader-ng"
#Bootloader Partition: #Bootloader Partition:
conf_boot_fstype="ext2" conf_boot_fstype="ext2"
bootloader_location="dd_uboot_boot"
dd_uboot_bs="512"
dd_uboot_seek="2"
unset spl_name
boot_name="u-boot.imx"
#Bootloader: u-boot features: #Bootloader: u-boot features:
#CONFIG_CMD_BOOTZ #CONFIG_CMD_BOOTZ
...@@ -20,3 +31,24 @@ conf_uboot_CONFIG_CMD_FS_GENERIC=1 ...@@ -20,3 +31,24 @@ conf_uboot_CONFIG_CMD_FS_GENERIC=1
#uenvcmd avaiable? #uenvcmd avaiable?
conf_uboot_use_uenvcmd=1 conf_uboot_use_uenvcmd=1
#conf_uboot_no_uenvcmd="loaduimage"
#can the bootloader auto detect the device: (*.dtb)?
#uboot_fdt_auto_detection=1
usbnet_mem=
#Kernel: Bootloader Settings:
conf_zreladdr="0x70008000"
conf_loadaddr="0x70010000"
conf_fdtaddr="0x71ff0000"
conf_initrdaddr="0x72000000"
conf_fdtfile="imx53-qsb.dtb"
need_dtbs=1
SYSTEM="video"
SERIAL="ttymxc0"
SERIAL_CONSOLE="${SERIAL},115200n8"
USE_KMS=1
...@@ -1446,18 +1446,8 @@ check_uboot_type () { ...@@ -1446,18 +1446,8 @@ check_uboot_type () {
process_dtb_conf process_dtb_conf
;; ;;
mx53loco) mx53loco)
SYSTEM="mx53loco" echo "Note: [--dtb dt-mx53loco] now replaces [--uboot mx53loco]"
conf_board="mx53loco" . "${DIR}"/hwpack/dt-mx53loco.conf
SERIAL="ttymxc0"
is_imx
conf_loadaddr="0x70010000"
conf_initrdaddr="0x72000000"
conf_zreladdr="0x70008000"
conf_fdtaddr="0x71ff0000"
conf_fdtfile="imx53-qsb.dtb"
need_dtbs=1
. "${DIR}"/hwpack/mx53loco.conf
convert_uboot_to_dtb_board convert_uboot_to_dtb_board
process_dtb_conf process_dtb_conf
;; ;;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment