File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -116,6 +116,19 @@ config BR2_PACKAGE_WPEFRAMEWORK_OOM_ADJUST
116116 string "oom-adjust"
117117 default ""
118118
119+ config BR2_PACKAGE_WPEFRAMEWORK_UMASK
120+ string "umask"
121+ default ""
122+ help
123+ Set the umask for new files created by Thunder
124+ e.g. 0022 will not set the write permission for group and others
125+
126+ config BR2_PACKAGE_WPEFRAMEWORK_GROUP
127+ string "group"
128+ default ""
129+ help
130+ Set a system group that need to the used by Thunder
131+
119132config BR2_PACKAGE_WPEFRAMEWORK_SYSTEM_PREFIX
120133 string "system prefix"
121134 default ""
Original file line number Diff line number Diff line change @@ -97,6 +97,15 @@ ifneq ($(BR2_PACKAGE_WPEFRAMEWORK_SYSTEM_PREFIX),"")
9797WPEFRAMEWORK_CONF_OPTS += -DSYSTEM_PREFIX="$(call qstrip,$(BR2_PACKAGE_WPEFRAMEWORK_SYSTEM_PREFIX ) ) "
9898endif
9999
100+ ifneq ($(BR2_PACKAGE_WPEFRAMEWORK_UMASK ) ,"")
101+ WPEFRAMEWORK_CONF_OPTS += -DUMASK="$(call qstrip,$(BR2_PACKAGE_WPEFRAMEWORK_UMASK ) ) "
102+ endif
103+
104+ ifneq ($(BR2_PACKAGE_WPEFRAMEWORK_GROUP ) ,"")
105+ WPEFRAMEWORK_CONF_OPTS += -DGROUP="$(call qstrip,$(BR2_PACKAGE_WPEFRAMEWORK_GROUP ) ) "
106+ endif
107+
108+
100109ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_BLUETOOTH ) ,y)
101110WPEFRAMEWORK_CONF_OPTS += -DBLUETOOTH_SUPPORT=ON
102111WPEFRAMEWORK_DEPENDENCIES += bluez5_utils
You can’t perform that action at this time.
0 commit comments