Update buidlroot to version 2016.08.1

This commit is contained in:
2016-11-16 22:07:29 +01:00
parent 807ab03547
commit a1061efbc2
3636 changed files with 59539 additions and 25783 deletions

View File

@@ -0,0 +1,26 @@
config BR2_PACKAGE_NODM
bool "nodm"
depends on BR2_PACKAGE_XORG7
depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam
depends on !BR2_STATIC_LIBS # linux-pam
depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam
depends on !BR2_TOOLCHAIN_USES_UCLIBC # needs wordexp.h
depends on BR2_USE_MMU # linux-pam
select BR2_PACKAGE_XLIB_LIBX11
select BR2_PACKAGE_LINUX_PAM
help
nodm is a minimal display manager that simply logs in
as a given user and starts an X session, without asking
for username or password.
For those cases where automatic login is needed (and
does not imply a security issue), nodm is simple to setup,
lightweight, and it should do exactly the right thing.
https://github.com/spanezz/nodm/
comment "nodm needs a glibc toolchain w/ wchar, locale, dynamic library"
depends on BR2_PACKAGE_XORG7
depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \
|| BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL \
|| BR2_TOOLCHAIN_USES_UCLIBC

View File

@@ -0,0 +1,49 @@
#!/bin/sh
#
# Starts nodm
#
NODM_FIRST_VT=7
NODM_XSESSION=/etc/X11/Xsession
NODM_OPTIONS=
NODM_X_OPTIONS="-nolisten tcp"
NODM_USER=root
NODM_MIN_SESSION_TIME=60
NODM_X_TIMEOUT=300
[ -r /etc/default/nodm ] && . /etc/default/nodm
export NODM_XSESSION NODM_X_OPTIONS NODM_USER NODM_MIN_SESSION_TIME NODM_FIRST_VT NODM_X_TIMEOUT
start() {
printf "Starting nodm: "
start-stop-daemon -S -q -p /var/run/nodm.pid --exec /usr/sbin/nodm -b -m -S -- ${NODM_OPTIONS}
[ $? = 0 ] && echo "OK" || echo "FAIL"
}
stop() {
printf "Stopping nodm: "
start-stop-daemon -K -q -p /var/run/nodm.pid
[ $? = 0 ] && echo "OK" || echo "FAIL"
}
restart() {
stop
sleep 1
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
restart
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?

View File

@@ -0,0 +1,2 @@
# locally calculated
sha256 840939d27d3d9b02ad09e1cffce24729bcdeee6cea6b3f0037d8ae76b49feecd nodm-0.12-1.tar.gz

View File

@@ -0,0 +1,34 @@
################################################################################
#
# nodm
#
################################################################################
NODM_VERSION = 0.12-1
NODM_SITE = $(call github,spanezz,nodm,debian/$(NODM_VERSION))
NODM_LICENSE = GPLv2+
NODM_LICENSE_FILES = COPYING
NODM_AUTORECONF = YES
NODM_DEPENDENCIES = xlib_libX11 linux-pam
# help2man doesn't work when cross compiling
define NODM_DISABLE_HELP2MAN
$(SED) 's/help2man/true/' $(@D)/Makefile.am
endef
NODM_POST_PATCH_HOOKS += NODM_DISABLE_HELP2MAN
define NODM_INSTALL_PAM
$(INSTALL) -D -m 0644 package/nodm/nodm.pam \
$(TARGET_DIR)/etc/pam.d/nodm
endef
NODM_POST_INSTALL_TARGET_HOOKS += NODM_INSTALL_PAM
define NODM_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/nodm/S90nodm \
$(TARGET_DIR)/etc/init.d/S90nodm
endef
$(eval $(autotools-package))

View File

@@ -0,0 +1,14 @@
# Log service and allow promiscuously
#
auth required pam_warn.so
auth required pam_unix.so
account required pam_warn.so
account required pam_permit.so
password required pam_warn.so
password required pam_permit.so
session required pam_warn.so
session required pam_permit.so
session required pam_env.so