2017-12-09 22:30:06 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2023-08-07 09:03:32 +02:00
|
|
|
# By default U-Boot loads DTB from a file named "system.dtb", so
|
2017-12-09 22:30:06 +01:00
|
|
|
# let's use a symlink with that name that points to the *first*
|
|
|
|
# devicetree listed in the config.
|
|
|
|
|
|
|
|
FIRST_DT=$(sed -n \
|
|
|
|
's/^BR2_LINUX_KERNEL_INTREE_DTS_NAME="\([a-z0-9\-]*\).*"$/\1/p' \
|
2023-06-06 16:42:37 +02:00
|
|
|
"${BR2_CONFIG}")
|
2017-12-09 22:30:06 +01:00
|
|
|
|
2023-06-06 16:42:37 +02:00
|
|
|
[ -z "${FIRST_DT}" ] || ln -fs "${FIRST_DT}.dtb" "${BINARIES_DIR}/system.dtb"
|
2017-12-11 22:35:36 +01:00
|
|
|
|
2023-06-06 16:42:37 +02:00
|
|
|
BOARD_DIR="$(dirname "$0")"
|
2022-05-04 06:01:44 +02:00
|
|
|
|
2023-06-06 16:42:37 +02:00
|
|
|
support/scripts/genimage.sh -c "${BOARD_DIR}/genimage.cfg"
|