From: Scott Mercer Date: Wed, 30 Apr 2025 18:46:51 +0000 (-0400) Subject: qualcommax: ipq50xx: gl-b3000: add 03_set_oem_name X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18656%2Fhead;p=thirdparty%2Fopenwrt.git qualcommax: ipq50xx: gl-b3000: add 03_set_oem_name This additional board.d script creates the "/tmp/sysinfo/oem_name" file and populates it with the proper OEM "supported_devices" metadata entry to be used by the new fwtool.sh oem detection feature. (#18554): add oem image dectection to fwtool.sh Signed-off-by: Scott Mercer Link: https://github.com/openwrt/openwrt/pull/18656 Signed-off-by: Robert Marko --- diff --git a/target/linux/qualcommax/ipq50xx/base-files/etc/board.d/03_set_oem_name b/target/linux/qualcommax/ipq50xx/base-files/etc/board.d/03_set_oem_name new file mode 100644 index 00000000000..350ff1bec0f --- /dev/null +++ b/target/linux/qualcommax/ipq50xx/base-files/etc/board.d/03_set_oem_name @@ -0,0 +1,21 @@ +#!/bin/sh + +. /lib/functions/uci-defaults.sh +. /lib/functions/system.sh + +ipq50xx_set_oem_name() +{ + local board="$1" + case $board in + glinet,gl-b3000) + oem_name=${board#*-} + echo "$oem_name" > "$oem_file" + ;; + esac +} + +oem_file=/tmp/sysinfo/oem_name +board=$(board_name) +ipq50xx_set_oem_name $board + +exit 0