diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2021-10-24 20:13:23 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-11-02 23:37:19 +0100 |
commit | 6e5ab1b154854e379f20fa6ed64cf4b656c985e7 (patch) | |
tree | 045c5af36ae5dd6a7012607ac326ff4b43693872 /target/linux/pistachio | |
parent | df68042d5b4a1ccf05cba7eaba1574f80ac94982 (diff) | |
download | upstream-6e5ab1b154854e379f20fa6ed64cf4b656c985e7.tar.gz upstream-6e5ab1b154854e379f20fa6ed64cf4b656c985e7.tar.bz2 upstream-6e5ab1b154854e379f20fa6ed64cf4b656c985e7.zip |
pistachio: Fix FIT image configuration name
The pistachio U-Boot expects a default configuration with the name
config@1 in the FIT image. The default was changed in OpenWrt some
months ago.
This makes the board boot again.
Fixes: 9f714398e060 ("build: use config-1 instead of config@1 as default")
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/pistachio')
-rw-r--r-- | target/linux/pistachio/image/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/pistachio/image/Makefile b/target/linux/pistachio/image/Makefile index 7f4e2236c5..2e15005ac2 100644 --- a/target/linux/pistachio/image/Makefile +++ b/target/linux/pistachio/image/Makefile @@ -15,6 +15,7 @@ define Device/Default KERNEL_SUFFIX := -kernel.itb KERNEL_INSTALL := 1 KERNEL_IN_UBI := 1 + DEVICE_DTS_CONFIG := config@1 IMAGES := factory.ubi sysupgrade.tar IMAGE/factory.ubi := append-ubi IMAGE/sysupgrade.tar := sysupgrade-tar |