From 718b239ae3babc2b336463a35129587d0f72880f Mon Sep 17 00:00:00 2001 From: "Rodrigo M. Duarte" Date: Wed, 1 Feb 2023 17:27:06 -0300 Subject: u-boot-fslc-mxsboot: Change the defconfig file Signed-off-by: Rodrigo M. Duarte --- recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb index a7dfd8aa2..f86316dea 100644 --- a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb +++ b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb @@ -12,7 +12,7 @@ EXTRA_OEMAKE:class-native = 'CC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" H EXTRA_OEMAKE:class-nativesdk = 'CROSS_COMPILE="${HOST_PREFIX}" CC="${CC} ${CFLAGS} ${LDFLAGS}" HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" STRIP=true V=1 CONFIG_MX28=y' do_compile () { - oe_runmake -C ${S} O=${B} sandbox_defconfig + oe_runmake -C ${S} O=${B} tools-only_defconfig # Disable CONFIG_CMD_LICENSE, license.h is not used by tools and # generating it requires bin2header tool, which for target build -- cgit v1.2.3-54-g00ecf From 6aa285dc90bca57414d1b616e66ed91d4d97c8db Mon Sep 17 00:00:00 2001 From: "Rodrigo M. Duarte" Date: Wed, 1 Feb 2023 17:30:33 -0300 Subject: u-boot-fslc-mxsboot: Fix the recipe to use setuptools After revision 6b08fb5cc44f8d32260a17a4f04c5bfa8dd5f18f of the u-boot-fslc, the u-boot-mxsboot is now use setuptools. Signed-off-by: Rodrigo M. Duarte --- recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb index f86316dea..b7e4ca760 100644 --- a/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb +++ b/recipes-bsp/u-boot/u-boot-fslc-mxsboot_2023.01.bb @@ -3,7 +3,17 @@ require u-boot-fslc-common_${PV}.inc DESCRIPTION = "U-boot bootloader mxsboot tool" SECTION = "bootloader" -DEPENDS = "swig-native bison-native gnutls-native dtc openssl" +inherit python3native + +DEPENDS += " \ + bison-native \ + dtc \ + gnutls \ + openssl \ + python3-setuptools-native \ + swig-native \ + util-linux-libuuid \ +" PROVIDES = "u-boot-mxsboot" -- cgit v1.2.3-54-g00ecf