mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
build: Re-arrange some configuration options
This commit is contained in:
parent
30821979f6
commit
a8faa23de6
20
README
20
README
@ -127,17 +127,9 @@ that can be enabled if the functionality is required:
|
|||||||
Since the public API of Embedded Linux library is not yet
|
Since the public API of Embedded Linux library is not yet
|
||||||
stable, the usage of the internal ELL copy is preferred.
|
stable, the usage of the internal ELL copy is preferred.
|
||||||
|
|
||||||
--enable-sim-hardcoded
|
|
||||||
|
|
||||||
Enable support for hard coded SIM keys
|
|
||||||
|
|
||||||
Note: With --disable-daemon this option is ignored
|
|
||||||
|
|
||||||
--enable-ofono
|
|
||||||
|
|
||||||
Enable support for oFono SIM authentication
|
|
||||||
|
|
||||||
Note: With --disable-daemon this option is ignored
|
|
||||||
|
|
||||||
--enable-wired
|
--enable-wired
|
||||||
|
|
||||||
@ -172,6 +164,18 @@ that can be enabled if the functionality is required:
|
|||||||
This enables building of all utilities that are however
|
This enables building of all utilities that are however
|
||||||
not installed and only useful during development.
|
not installed and only useful during development.
|
||||||
|
|
||||||
|
--enable-ofono
|
||||||
|
|
||||||
|
Enable support for oFono SIM authentication
|
||||||
|
|
||||||
|
Note: With --disable-daemon this option is ignored
|
||||||
|
|
||||||
|
--enable-sim-hardcoded
|
||||||
|
|
||||||
|
Enable support for hard coded SIM keys
|
||||||
|
|
||||||
|
Note: With --disable-daemon this option is ignored
|
||||||
|
|
||||||
--enable-docs
|
--enable-docs
|
||||||
|
|
||||||
Enable generation of documentation and manual pages
|
Enable generation of documentation and manual pages
|
||||||
|
@ -9,10 +9,10 @@ fi
|
|||||||
--enable-debug \
|
--enable-debug \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
--enable-sim-hardcoded \
|
|
||||||
--enable-ofono \
|
|
||||||
--enable-wired \
|
--enable-wired \
|
||||||
--enable-hwsim \
|
--enable-hwsim \
|
||||||
--enable-tools \
|
--enable-tools \
|
||||||
|
--enable-ofono \
|
||||||
|
--enable-sim-hardcoded \
|
||||||
--disable-dbus-policy \
|
--disable-dbus-policy \
|
||||||
--disable-systemd-service $*
|
--disable-systemd-service $*
|
||||||
|
19
configure.ac
19
configure.ac
@ -244,15 +244,6 @@ if (test "${enable_external_ell}" = "yes"); then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(EXTERNAL_ELL, test "${enable_external_ell}" = "yes")
|
AM_CONDITIONAL(EXTERNAL_ELL, test "${enable_external_ell}" = "yes")
|
||||||
|
|
||||||
AC_ARG_ENABLE([sim_hardcoded], AC_HELP_STRING([--enable-sim-hardcoded],
|
|
||||||
[enable hard coded SIM keys]),
|
|
||||||
[enable_sim_hardcoded=${enableval}])
|
|
||||||
AM_CONDITIONAL(SIM_HARDCODED, test "${enable_sim_hardcoded}" = "yes")
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([ofono], AC_HELP_STRING([--enable-ofono],
|
|
||||||
[enable oFono SIM authentication support]),
|
|
||||||
[enable_ofono=${enableval}])
|
|
||||||
AM_CONDITIONAL(OFONO, test "${enable_ofono}" = "yes")
|
|
||||||
|
|
||||||
AC_ARG_ENABLE([wired], AC_HELP_STRING([--enable-wired],
|
AC_ARG_ENABLE([wired], AC_HELP_STRING([--enable-wired],
|
||||||
[enable Ethernet authentication support]),
|
[enable Ethernet authentication support]),
|
||||||
@ -269,6 +260,16 @@ AC_ARG_ENABLE([tools], AC_HELP_STRING([--enable-tools],
|
|||||||
[enable_tools=${enableval}])
|
[enable_tools=${enableval}])
|
||||||
AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
|
AM_CONDITIONAL(TOOLS, test "${enable_tools}" = "yes")
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([ofono], AC_HELP_STRING([--enable-ofono],
|
||||||
|
[enable oFono SIM authentication support]),
|
||||||
|
[enable_ofono=${enableval}])
|
||||||
|
AM_CONDITIONAL(OFONO, test "${enable_ofono}" = "yes")
|
||||||
|
|
||||||
|
AC_ARG_ENABLE([sim_hardcoded], AC_HELP_STRING([--enable-sim-hardcoded],
|
||||||
|
[enable hard coded SIM keys]),
|
||||||
|
[enable_sim_hardcoded=${enableval}])
|
||||||
|
AM_CONDITIONAL(SIM_HARDCODED, test "${enable_sim_hardcoded}" = "yes")
|
||||||
|
|
||||||
AC_ARG_ENABLE([docs], AC_HELP_STRING([--enable-docs],
|
AC_ARG_ENABLE([docs], AC_HELP_STRING([--enable-docs],
|
||||||
[build documentation and manual pages]),
|
[build documentation and manual pages]),
|
||||||
[enable_docs=${enableval}])
|
[enable_docs=${enableval}])
|
||||||
|
Loading…
Reference in New Issue
Block a user