xref: /OK3568_Linux_fs/buildroot/package/seatd/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1menuconfig BR2_PACKAGE_SEATD
2	bool "seatd"
3	select BR2_PACKAGE_SEATD_BUILTIN \
4		if !BR2_PACKAGE_SYSTEMD_LOGIND && !BR2_PACKAGE_SEATD_DAEMON
5	help
6	  Seat management daemon and support library.
7
8	  https://git.sr.ht/~kennylevinsen/seatd
9
10if BR2_PACKAGE_SEATD
11
12config BR2_PACKAGE_SEATD_BUILTIN
13	bool "builtin backend"
14	help
15	  Builtin in-process seatd implementation inside libseat.
16
17config BR2_PACKAGE_SEATD_DAEMON
18	bool "seatd daemon"
19	default y
20	depends on BR2_USE_MMU # fork()
21	help
22	  Build the seatd daemon and support for it inside libseat.
23
24if BR2_PACKAGE_SEATD_DAEMON
25
26config BR2_PACKAGE_SEATD_DAEMON_VT_BOUND
27	bool "VT-bound seatd daemon"
28
29endif
30
31endif
32