From: Petr Štetiar Date: Mon, 20 Apr 2020 14:42:47 +0000 (+0200) Subject: uboot-rockchip: fix ident string X-Git-Tag: v21.02.0-rc1~3014 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=97673d87717abbced8f3a4998367aff62c836911;p=openwrt%2Fopenwrt.git uboot-rockchip: fix ident string Commit 797506011695 ("uboot-rockchip: add new package") has added `OpenWRT` ident string, fix it to proper `OpenWrt`. Fixes: 797506011695 ("uboot-rockchip: add new package") Signed-off-by: Petr Štetiar --- diff --git a/package/boot/uboot-rockchip/Makefile b/package/boot/uboot-rockchip/Makefile index fa6bbe15fa..b99d051fcf 100644 --- a/package/boot/uboot-rockchip/Makefile +++ b/package/boot/uboot-rockchip/Makefile @@ -42,7 +42,7 @@ define Build/Configure $(call Build/Configure/U-Boot) $(SED) 's#CONFIG_MKIMAGE_DTC_PATH=.*#CONFIG_MKIMAGE_DTC_PATH="$(PKG_BUILD_DIR)/scripts/dtc/dtc"#g' $(PKG_BUILD_DIR)/.config - echo 'CONFIG_IDENT_STRING=" OpenWRT"' >> $(PKG_BUILD_DIR)/.config + echo 'CONFIG_IDENT_STRING=" OpenWrt"' >> $(PKG_BUILD_DIR)/.config endef define Build/InstallDev