seccomp=""
# for TIZEN-maru
+java_ui="no"
maru="no"
shm="no"
libav=""
# for TIZEN-maru
--enable-maru) maru="yes"
;;
+ --enable-java-ui) java_ui="yes"
+ ;;
--enable-shm) shm="yes"
;;
--enable-libav) libav="yes"
TIZEN-maru options:
--enable-maru enable maru board
+ --enable-java-ui enable java UI
--enable-shm enable shared memory for framebuffer
--enable-libav enable libav library
--disable-libav disable libav library
# for TIZEN-maru
echo "TIZEN-maru support $maru"
+echo "TIZEN-maru Java UI support $java_ui"
echo "TIZEN-maru shared framebuffer support $shm"
echo "TIZEN-maru libav support $libav"
echo "TIZEN-maru libpng support $libpng"
if test "$maru" = "yes" ; then
echo "CONFIG_MARU=y" >> $config_host_mak
fi
+# java ui is deprecated
+if test "$java_ui" = "yes" ; then
+ if test "$shm" = "yes" || test "$sdl" = "yes" ; then
+ echo "CONFIG_JAVA_UI=y" >> $config_host_mak
+ else
+ error_exit "Java UI is only available with SDL or SHM"
+ fi
+fi
if test "$shm" = "yes" ; then
- echo "CONFIG_USE_SHM=y" >> $config_host_mak
+ if test "$java_ui" = "yes" ; then
+ echo "CONFIG_USE_SHM=y" >> $config_host_mak
+ else
+ error_exit "SHM is only available whith Java UI"
+ fi
fi
if test "$libav" = "yes" ; then
echo "CONFIG_LIBAV=y" >> $config_host_mak
if [ ! -z "$extension_path" ] ; then
echo "CONFIG_EXTENSION_PATH=$extension_path" >> $config_host_mak
fi
-# java skin is deprecated
-if test "$maru" = "yes" ; then
- if test "$shm" = "yes" || test "$sdl" = "yes" ; then
- echo "CONFIG_JAVA_UI=y" >> $config_host_mak
- fi
-fi
# TPM passthrough support?
if test "$tpm" = "yes"; then