diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-07-08 23:14:03 +0200 |
---|---|---|
committer | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-07-09 20:08:26 +0100 |
commit | 9ef53b93cbd904d514d056be6f4ef83b0ca2ff59 (patch) | |
tree | 97415e901a5a8fbe5298a1b02b5a86ca97b955b0 | |
parent | fa2435903fb161591e49e3ec73307567d2a4ae07 (diff) | |
download | upstream-9ef53b93cbd904d514d056be6f4ef83b0ca2ff59.tar.gz upstream-9ef53b93cbd904d514d056be6f4ef83b0ca2ff59.tar.bz2 upstream-9ef53b93cbd904d514d056be6f4ef83b0ca2ff59.zip |
rb532: Fix missing DEVICE_TITLE
This fixes the collection of target info during build, where the
device title for rb532/nand is just empty:
tmp/.config-target.in:44925:warning: leading whitespace ignored
tmp/.config-target.in:123738:warning: leading whitespace ignored
tmp/.config-target.in:123786:warning: leading whitespace ignored
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
-rw-r--r-- | target/linux/rb532/image/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/rb532/image/Makefile b/target/linux/rb532/image/Makefile index 615c9bd265..1558bf56d8 100644 --- a/target/linux/rb532/image/Makefile +++ b/target/linux/rb532/image/Makefile @@ -38,6 +38,7 @@ endef define Device/nand CMDLINE := ubi.mtd=1 ubi.block=0,rootfs root=/dev/ubiblock0_1 BOARD_NAME := rb532 + DEVICE_TITLE := rb532 NAND SUPPORTED_DEVICES := rb532 KERNEL_INITRAMFS := append-kernel | patch-cmdline | lzma | lzma-loader-elf KERNEL := $$(KERNEL_INITRAMFS) | kernel2minor -s 2048 -i 0 -c |