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.
16 lines
481 B
16 lines
481 B
2 years ago
|
#!/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 \
|
||
|
-e 's|^BR2_LINUX_KERNEL_INTREE_DTS_NAME="xilinx/([-_/[:alnum:]\\.]*).*"$|\1|p' \
|
||
|
${BR2_CONFIG})
|
||
|
|
||
|
[ -z "${FIRST_DT}" ] || ln -fs ${FIRST_DT}.dtb ${BINARIES_DIR}/system.dtb
|
||
|
|
||
|
BOARD_DIR="$(dirname $0)"
|
||
|
|
||
|
support/scripts/genimage.sh -c $BOARD_DIR/genimage.cfg
|