1config BR2_PACKAGE_NODM 2 bool "nodm" 3 depends on BR2_PACKAGE_XORG7 4 depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam 5 depends on !BR2_STATIC_LIBS # linux-pam 6 depends on BR2_USE_MMU # linux-pam 7 select BR2_PACKAGE_XLIB_LIBX11 8 select BR2_PACKAGE_LINUX_PAM 9 help 10 nodm is a minimal display manager that simply logs in 11 as a given user and starts an X session, without asking 12 for username or password. 13 14 For those cases where automatic login is needed (and 15 does not imply a security issue), nodm is simple to setup, 16 lightweight, and it should do exactly the right thing. 17 18 https://github.com/spanezz/nodm/ 19 20comment "nodm needs a toolchain w/ wchar, locale, dynamic library" 21 depends on BR2_PACKAGE_XORG7 22 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ 23 || BR2_STATIC_LIBS 24