[openwrt/openwrt] image: add ModelNameLimit16

LEDE Commits lede-commits at lists.infradead.org
Mon Feb 22 12:43:00 EST 2021


noltari pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/1235ea7c205c313e8dbb5c46917b8739abbfb152

commit 1235ea7c205c313e8dbb5c46917b8739abbfb152
Author: Álvaro Fernández Rojas <noltari at gmail.com>
AuthorDate: Mon Feb 22 18:04:16 2021 +0100

    image: add ModelNameLimit16
    
    This script returns the model name limited to 16 characters.
    
    Signed-off-by: Álvaro Fernández Rojas <noltari at gmail.com>
---
 include/image-commands.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/image-commands.mk b/include/image-commands.mk
index c3f8b4b95a..51e745958e 100644
--- a/include/image-commands.mk
+++ b/include/image-commands.mk
@@ -3,6 +3,10 @@
 IMAGE_KERNEL = $(word 1,$^)
 IMAGE_ROOTFS = $(word 2,$^)
 
+define ModelNameLimit16
+$(shell expr substr "$(word 2, $(subst _, ,$(1)))" 1 16)
+endef
+
 define rootfs_align
 $(patsubst %-256k,0x40000,$(patsubst %-128k,0x20000,$(patsubst %-64k,0x10000,$(patsubst squashfs%,0x4,$(patsubst root.%,%,$(1))))))
 endef



More information about the lede-commits mailing list