2018-07-25 16:35:37 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# By default U-Boot loads DTB from a file named "system.dtb", so
|
|
|
|
# let's use a symlink with that name that points to the *first*
|
|
|
|
# devicetree listed in the config.
|
|
|
|
|
|
|
|
FIRST_DT=$(sed -nr \
|
2023-02-01 20:59:56 +01:00
|
|
|
-e 's|^BR2_LINUX_KERNEL_INTREE_DTS_NAME="(xilinx/)?([-_/[:alnum:]\\.]*).*"$|\2|p' \
|
2023-06-06 19:54:59 +02:00
|
|
|
"${BR2_CONFIG}")
|
2018-07-25 16:35:37 +02:00
|
|
|
|
2023-06-06 19:54:59 +02:00
|
|
|
[ -z "${FIRST_DT}" ] || ln -fs "${FIRST_DT}.dtb" "${BINARIES_DIR}/system.dtb"
|
2018-07-25 16:35:37 +02:00
|
|
|
|
2023-06-06 19:54:59 +02:00
|
|
|
BOARD_DIR="$(dirname "$0")"
|
2022-02-11 15:44:01 +01:00
|
|
|
|
2023-06-06 19:54:59 +02:00
|
|
|
support/scripts/genimage.sh -c "${BOARD_DIR}/genimage.cfg"
|