From: Peter Korsgaard Date: Wed, 30 Sep 2009 15:40:24 +0000 (+0200) Subject: Makefile: reinstate /etc/br-version X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=912ea81ad4a2f1b6a87c9cebfefdbbf1f60f526a;p=buildroot.git Makefile: reinstate /etc/br-version Got lost in the recent cleanup, but is handy to know BR version. Signed-off-by: Peter Korsgaard --- diff --git a/Makefile b/Makefile index a7f0b887a3..7fe30a7bea 100644 --- a/Makefile +++ b/Makefile @@ -404,6 +404,10 @@ endif find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIPCMD) 2>/dev/null || true $(TARGET_LDCONFIG) -r $(TARGET_DIR) 2>/dev/null + mkdir -p $(TARGET_DIR)/etc + echo $(BR2_VERSION)$(shell $(TOPDIR)/scripts/setlocalversion) > \ + $(TARGET_DIR)/etc/br-version + ifneq ($(BR2_ROOTFS_POST_BUILD_SCRIPT),"") $(BR2_ROOTFS_POST_BUILD_SCRIPT) $(TARGET_DIR) endif