diff options
author | Moritz Warning <moritzwarning@web.de> | 2021-05-05 11:06:22 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-09-23 21:45:30 -1000 |
commit | b34aa6aff71374d5e4eb7ea2dda11cf6305d512b (patch) | |
tree | dd834370a843759c8ed0fa081012e8d7a3035677 /target/linux/bcm47xx/image/Makefile | |
parent | e2f284dbd1841a78bc35d2ae87aec4e4fd9769d9 (diff) | |
download | upstream-b34aa6aff71374d5e4eb7ea2dda11cf6305d512b.tar.gz upstream-b34aa6aff71374d5e4eb7ea2dda11cf6305d512b.tar.bz2 upstream-b34aa6aff71374d5e4eb7ea2dda11cf6305d512b.zip |
bcm47xx: use device vendor/model variable
Remove use of DEVICE_TITLE in favor of the
DEVICE_VENDOR and DEVICE_MODEL as used by
all other targets.
Signed-off-by: Moritz Warning <moritzwarning@web.de>
Diffstat (limited to 'target/linux/bcm47xx/image/Makefile')
-rw-r--r-- | target/linux/bcm47xx/image/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/target/linux/bcm47xx/image/Makefile b/target/linux/bcm47xx/image/Makefile index 30a1b2f476..4341a232cf 100644 --- a/target/linux/bcm47xx/image/Makefile +++ b/target/linux/bcm47xx/image/Makefile @@ -146,17 +146,20 @@ define Device/Default endef define Device/standard - DEVICE_TITLE := Image with LZMA loader and LZMA compressed kernel + DEVICE_VENDOR := Generic + DEVICE_MODEL := Image with LZMA loader and LZMA compressed kernel endef define Device/standard-noloader-gz - DEVICE_TITLE := Image with gzipped kernel + DEVICE_VENDOR := Generic + DEVICE_MODEL := Image with gzipped kernel KERNEL_NAME = vmlinux.gz IMAGE/trx := append-rootfs | trx-without-loader endef define Device/standard-noloader-nodictionarylzma - DEVICE_TITLE := Image with LZMA compressed kernel matching CFE decompressor + DEVICE_VENDOR := Generic + DEVICE_MODEL := Image with LZMA compressed kernel matching CFE decompressor KERNEL_NAME = vmlinux-nodictionary.lzma IMAGE/trx := append-rootfs | trx-without-loader endef |