Config.in 905 B

123456789101112131415161718192021222324
  1. config 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. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # linux-pam
  8. select BR2_PACKAGE_XLIB_LIBX11
  9. select BR2_PACKAGE_LINUX_PAM
  10. help
  11. nodm is a minimal display manager that simply logs in
  12. as a given user and starts an X session, without asking
  13. for username or password.
  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. https://github.com/spanezz/nodm/
  18. comment "nodm needs a toolchain w/ wchar, locale, dynamic library, gcc >= 4.9"
  19. depends on BR2_PACKAGE_XORG7
  20. depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
  21. || BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9