|
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
|
|
PKG_NAME:=uboot-envtools
|
|
PKG_NAME:=uboot-envtools
|
|
|
PKG_DISTNAME:=u-boot
|
|
PKG_DISTNAME:=u-boot
|
|
|
PKG_VERSION:=2023.07.02
|
|
PKG_VERSION:=2023.07.02
|
|
|
-PKG_RELEASE:=1
|
|
|
|
|
|
|
+PKG_RELEASE:=2
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE:=$(PKG_DISTNAME)-$(PKG_VERSION).tar.bz2
|
|
|
PKG_SOURCE_URL:= \
|
|
PKG_SOURCE_URL:= \
|
|
@@ -45,18 +45,19 @@ define Package/uboot-envtools/description
|
|
|
endef
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
define Build/Configure
|
|
|
- touch $(PKG_BUILD_DIR)/include/config.h
|
|
|
|
|
- mkdir -p $(PKG_BUILD_DIR)/include/config
|
|
|
|
|
- touch $(PKG_BUILD_DIR)/include/config/auto.conf
|
|
|
|
|
- mkdir -p $(PKG_BUILD_DIR)/include/generated
|
|
|
|
|
- touch $(PKG_BUILD_DIR)/include/generated/autoconf.h
|
|
|
|
|
|
|
+ $(call Build/Compile/Default,tools-only_defconfig)
|
|
|
endef
|
|
endef
|
|
|
|
|
|
|
|
|
|
+define Build/Compile
|
|
|
|
|
+ $(call Build/Compile/Default,envtools)
|
|
|
|
|
+endef
|
|
|
|
|
+
|
|
|
|
|
+# We need to override the ARCH passed by buildsystem as otherwise the defconfig
|
|
|
|
|
+# for tools-only wont match and the includes for sandbox will be dropped
|
|
|
MAKE_FLAGS += \
|
|
MAKE_FLAGS += \
|
|
|
|
|
+ ARCH="sandbox" \
|
|
|
TARGET_CFLAGS="$(TARGET_CFLAGS)" \
|
|
TARGET_CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
- TARGET_LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
|
|
|
- no-dot-config-targets=envtools \
|
|
|
|
|
- envtools
|
|
|
|
|
|
|
+ TARGET_LDFLAGS="$(TARGET_LDFLAGS)"
|
|
|
|
|
|
|
|
define Package/uboot-envtools/conffiles
|
|
define Package/uboot-envtools/conffiles
|
|
|
/etc/config/ubootenv
|
|
/etc/config/ubootenv
|