diff options
author | Heinrich Schuchardt | 2018-04-13 00:45:57 +0200 |
---|---|---|
committer | Philipp Tomsich | 2018-04-25 18:25:21 +0200 |
commit | 2144c74f684a8baa7f170a34fbcf13d551a6ae64 (patch) | |
tree | 6aefa59b6788cbf491246d2518e80390db1189e4 /include | |
parent | b0ba1e7e9d9b9441a18048ec67a3b3100c096975 (diff) |
rockchip: rk3288: provide ${fdtfile}
All rk3288 default configs define CONFIG_DEFAULT_DEVICE_TREE.
So we can use it to define ${fdtfile} in rk3288_common.h.
This variable is needed by the distro boot command.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/rk3288_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/rk3288_common.h b/include/configs/rk3288_common.h index 78595b86ec4..9b7b24ff967 100644 --- a/include/configs/rk3288_common.h +++ b/include/configs/rk3288_common.h @@ -73,6 +73,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "fdt_high=0x0fffffff\0" \ "initrd_high=0x0fffffff\0" \ + "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ "partitions=" PARTS_DEFAULT \ ENV_MEM_LAYOUT_SETTINGS \ ROCKCHIP_DEVICE_SETTINGS \ |