Просмотр исходного кода

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 <[email protected]>
Petr Štetiar 5 лет назад
Родитель
Сommit
97673d8771
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      package/boot/uboot-rockchip/Makefile

+ 1 - 1
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