blob: 0bdbce725a76f99f5a813c72d5333964b1520078 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "U-Boot bootloader tools"
Patrick Williamsdb4c27e2022-08-05 08:10:29 -05002DEPENDS += "gnutls openssl util-linux swig-native"
3
4inherit python3native
5export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}"
Andrew Geissler82c905d2020-04-13 13:39:40 -05006
7PROVIDES = "${MLPREFIX}u-boot-mkimage ${MLPREFIX}u-boot-mkenvimage"
Patrick Williams213cb262021-08-07 19:21:33 -05008PROVIDES:class-native = "u-boot-mkimage-native u-boot-mkenvimage-native"
Andrew Geissler82c905d2020-04-13 13:39:40 -05009
10PACKAGES += "${PN}-mkimage ${PN}-mkenvimage"
11
12# Required for backward compatibility with "u-boot-mkimage-xxx.bb"
Patrick Williams213cb262021-08-07 19:21:33 -050013RPROVIDES:${PN}-mkimage = "u-boot-mkimage"
14RREPLACES:${PN}-mkimage = "u-boot-mkimage"
15RCONFLICTS:${PN}-mkimage = "u-boot-mkimage"
Andrew Geissler82c905d2020-04-13 13:39:40 -050016
Patrick Williams213cb262021-08-07 19:21:33 -050017EXTRA_OEMAKE:class-target = 'CROSS_COMPILE="${TARGET_PREFIX}" CC="${CC} ${CFLAGS} ${LDFLAGS}" HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" STRIP=true V=1'
18EXTRA_OEMAKE:class-native = 'CC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" STRIP=true V=1'
19EXTRA_OEMAKE:class-nativesdk = 'CROSS_COMPILE="${HOST_PREFIX}" CC="${CC} ${CFLAGS} ${LDFLAGS}" HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" STRIP=true V=1'
Andrew Geissler82c905d2020-04-13 13:39:40 -050020
21SED_CONFIG_EFI = '-e "s/CONFIG_EFI_LOADER=.*/# CONFIG_EFI_LOADER is not set/"'
Patrick Williams213cb262021-08-07 19:21:33 -050022SED_CONFIG_EFI:x86 = ''
23SED_CONFIG_EFI:x86-64 = ''
24SED_CONFIG_EFI:arm = ''
25SED_CONFIG_EFI:armeb = ''
26SED_CONFIG_EFI:aarch64 = ''
Andrew Geissler82c905d2020-04-13 13:39:40 -050027
28do_compile () {
Andrew Geisslerd1e89492021-02-12 15:35:20 -060029 # Yes, this is crazy. If you build on a system with git < 2.14 from scratch, the tree will
30 # be marked as "dirty" and the version will include "-dirty", leading to a reproducibility problem.
31 # The issue is the inode count for Licnses/README changing due to do_populate_lic hardlinking a
32 # copy of the file. We avoid this by ensuring the index is updated with a "git diff" before the
33 # u-boot machinery tries to determine the version.
34 #
35 # build$ ../git/scripts/setlocalversion ../git
36 # ""
37 # build$ ln ../git/
38 # build$ ln ../git/README ../foo
39 # build$ ../git/scripts/setlocalversion ../git
40 # ""-dirty
41 # (i.e. creating a hardlink dirties the index)
42 cd ${S}; git diff; cd ${B}
43
Andrew Geisslerd5838332022-05-27 11:33:10 -050044 oe_runmake -C ${S} tools-only_defconfig O=${B}
Andrew Geissler82c905d2020-04-13 13:39:40 -050045
46 # Disable CONFIG_CMD_LICENSE, license.h is not used by tools and
47 # generating it requires bin2header tool, which for target build
48 # is built with target tools and thus cannot be executed on host.
49 sed -i -e "s/CONFIG_CMD_LICENSE=.*/# CONFIG_CMD_LICENSE is not set/" ${SED_CONFIG_EFI} ${B}/.config
50
51 oe_runmake -C ${S} cross_tools NO_SDL=1 O=${B}
52}
53
54do_install () {
55 install -d ${D}${bindir}
56
57 # mkimage
58 install -m 0755 tools/mkimage ${D}${bindir}/uboot-mkimage
59 ln -sf uboot-mkimage ${D}${bindir}/mkimage
60
61 # mkenvimage
62 install -m 0755 tools/mkenvimage ${D}${bindir}/uboot-mkenvimage
63 ln -sf uboot-mkenvimage ${D}${bindir}/mkenvimage
64
65 # dumpimage
66 install -m 0755 tools/dumpimage ${D}${bindir}/uboot-dumpimage
67 ln -sf uboot-dumpimage ${D}${bindir}/dumpimage
68
69 # fit_check_sign
70 install -m 0755 tools/fit_check_sign ${D}${bindir}/uboot-fit_check_sign
71 ln -sf uboot-fit_check_sign ${D}${bindir}/fit_check_sign
72}
73
Patrick Williams213cb262021-08-07 19:21:33 -050074ALLOW_EMPTY:${PN} = "1"
75FILES:${PN} = ""
76FILES:${PN}-mkimage = "${bindir}/uboot-mkimage ${bindir}/mkimage ${bindir}/uboot-dumpimage ${bindir}/dumpimage ${bindir}/uboot-fit_check_sign ${bindir}/fit_check_sign"
77FILES:${PN}-mkenvimage = "${bindir}/uboot-mkenvimage ${bindir}/mkenvimage"
Andrew Geissler82c905d2020-04-13 13:39:40 -050078
Patrick Williams213cb262021-08-07 19:21:33 -050079RDEPENDS:${PN}-mkimage += "dtc"
80RDEPENDS:${PN} += "${PN}-mkimage ${PN}-mkenvimage"
81RDEPENDS:${PN}:class-native = ""
Andrew Geissler82c905d2020-04-13 13:39:40 -050082
83BBCLASSEXTEND = "native nativesdk"
84