Skip to content
Snippets Groups Projects
Commit 7c271a89 authored by Tobias Kahlki's avatar Tobias Kahlki
Browse files

[ENV] Add loading of touch overlays for seco_config

parent 65812e17
No related branches found
No related tags found
1 merge request!192Add touch sub-selection to seco_config
......@@ -48,7 +48,13 @@
#define GET_FDT_OVERLAY_VIDEO_LIST env_get ("fdt_overlay_video_list")
#define SAVE_FDT_OVERLAY_VIDEO_CMD(x) env_set ("fdt_overlay_video_cmd", (x))
#define GET_FDT_OVERLAY_VIDEo_CMD env_get ("fdt_overlay_video_cmd")
#define GET_FDT_OVERLAY_VIDEO_CMD env_get ("fdt_overlay_video_cmd")
#define SAVE_FDT_OVERLAY_TOUCH_LIST(x) env_set ("fdt_overlay_touch_list", (x))
#define GET_FDT_OVERLAY_TOUCH_LIST env_get ("fdt_overlay_touch_list")
#define SAVE_FDT_OVERLAY_TOUCH_CMD(x) env_set ("fdt_overlay_touch_cmd", (x))
#define GET_FDT_OVERLAY_TOUCH_CMD env_get ("fdt_overlay_touch_cmd")
#define SAVE_FDT_OVERLAY_PER_LIST(x) env_set ("fdt_overlay_per_list", (x))
#define GET_FDT_OVERLAY_PER_LIST env_get ("fdt_overlay_per_list")
......
......@@ -95,7 +95,8 @@
if test -n "${fdt_overlay_carrier_file}"; then run fdt_overlay_carrier_cmd; fi; \
seco_config fdtoverlay ; \
if test -n "${fdt_overlay_per_cmd}"; then run fdt_overlay_per_cmd; fi; \
if test -n "${fdt_overlay_video_cmd}"; then run fdt_overlay_video_cmd; fi;
if test -n "${fdt_overlay_video_cmd}"; then run fdt_overlay_video_cmd; fi; \
if test -n "${fdt_overlay_touch_cmd}"; then run fdt_overlay_touch_cmd; fi;
#define MACRO_ENV_FDT_OVERLAY_SRC_USDHCI \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment