hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash
 
#
# dtb_list extracts the list of DTB files from BR2_LINUX_KERNEL_INTREE_DTS_NAME
# in ${BR_CONFIG}, then prints the corresponding list of file names for the
# genimage configuration file
#
dtb_list()
{
   local DTB_LIST="$(sed -n 's/^BR2_LINUX_KERNEL_INTREE_DTS_NAME="\([a-z0-9 \-]*\)"$/\1/p' ${BR2_CONFIG})"
 
   for dt in $DTB_LIST; do
       echo -n "\"$dt.dtb\", "
   done
}
 
#
# linux_image extracts the Linux image format from BR2_LINUX_KERNEL_UIMAGE in
# ${BR_CONFIG}, then prints the corresponding file name for the genimage
# configuration file
#
linux_image()
{
   if grep -Eq "^BR2_LINUX_KERNEL_UIMAGE=y$" ${BR2_CONFIG}; then
       echo "\"uImage\""
   else
       echo "\"zImage\""
   fi
}
 
genimage_type()
{
   if grep -Eq "^BR2_TARGET_UBOOT_SPL=y$" ${BR2_CONFIG}; then
       echo "genimage.cfg.template_spl"
   else
       echo "genimage.cfg.template"
   fi
}
 
main()
{
   local FILES="$(dtb_list) $(linux_image)"
   local GENIMAGE_CFG="$(mktemp --suffix genimage.cfg)"
   local GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp"
 
   sed -e "s/%FILES%/${FILES}/" \
       board/freescale/common/imx/$(genimage_type) > ${GENIMAGE_CFG}
 
   rm -rf "${GENIMAGE_TMP}"
 
   genimage \
       --rootpath "${TARGET_DIR}" \
       --tmppath "${GENIMAGE_TMP}" \
       --inputpath "${BINARIES_DIR}" \
       --outputpath "${BINARIES_DIR}" \
       --config "${GENIMAGE_CFG}"
 
   rm -f ${GENIMAGE_CFG}
 
   exit $?
}
 
main $@