From 1ad25b9039ef910dc444e50fd43245c31d9bcae9 Mon Sep 17 00:00:00 2001 From: Roger Zanoni Date: Fri, 23 Jun 2023 14:06:20 +0200 Subject: [wam][cef] Make it possible to use cef as a backend This changes enables switching between the chromium and cef backends on wam by passing the agl-cef feature to the agl-setup script. Bug-AGL: SPEC-3872 Signed-off-by: Roger Zanoni Change-Id: Ib5b4b139789ec8303fef0a210a7e8f2f724d0c00 --- recipes-wam/wam/files/WebAppMgrCli | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 recipes-wam/wam/files/WebAppMgrCli (limited to 'recipes-wam/wam/files/WebAppMgrCli') diff --git a/recipes-wam/wam/files/WebAppMgrCli b/recipes-wam/wam/files/WebAppMgrCli new file mode 100755 index 000000000..4312e0472 --- /dev/null +++ b/recipes-wam/wam/files/WebAppMgrCli @@ -0,0 +1,9 @@ +#!/bin/bash + +WAM_CLI_EXE="/usr/bin/WebAppMgr" + +if [ "$WAM_IS_CEF" = true ] ; then + WAM_CLI_EXE="/usr/share/wam/WebAppMgrCli" +fi + +exec $WAM_CLI_EXE $@ -- cgit