diff options
Diffstat (limited to 'package')
110 files changed, 1708 insertions, 4444 deletions
diff --git a/package/Depends.mk b/package/Depends.mk index 3947db184..25d58ab58 100644 --- a/package/Depends.mk +++ b/package/Depends.mk @@ -154,6 +154,7 @@ obexftp-compile: openobex-compile libiconv-compile opencdk-compile: libgcrypt-compile libgpg-error-compile zlib-compile openct-compile: libtool-compile libusb-compile openldap-compile: cyrus-sasl-compile openssl-compile libdb-compile +openobex-compile: bluez-compile opensips-compile: openssl-compile ifeq (${ADK_COMPILE_OPENSSH_WITH_KRB5},y) openssh-compile: krb5-compile diff --git a/package/Makefile b/package/Makefile index fddb29293..9e3209630 100644 --- a/package/Makefile +++ b/package/Makefile @@ -215,7 +215,7 @@ package-$(ADK_PACKAGE_LIBXSLT) += libxslt package-$(ADK_PACKAGE_LIBXT) += libXt package-$(ADK_PACKAGE_LIGHTTPD) += lighttpd package-$(ADK_PACKAGE_LINKS) += links -package-$(ADK_PACKAGE_LINUX_ATM) += linux-atm +package-$(ADK_COMPILE_LINUX_ATM) += linux-atm package-$(ADK_PACKAGE_LOGROTATE) += logrotate package-$(ADK_PACKAGE_LRZSZ) += lrzsz package-${ADK_PACKAGE_LYNX} += lynx diff --git a/package/apr/Makefile b/package/apr/Makefile index ea20ddfed..bf326d316 100644 --- a/package/apr/Makefile +++ b/package/apr/Makefile @@ -26,6 +26,7 @@ CONFIGURE_ENV+= ac_cv_sizeof_size_t=4 CONFIGURE_ENV+= ac_cv_sizeof_ssize_t=4 CONFIGURE_ENV+= ac_cv_file__dev_zero=yes CONFIGURE_ENV+= apr_cv_process_shared_works=no +CONFIGURE_ENV+= ac_cv_lib_nsl_gethostbyname=no CONFIGURE_ARGS+= --with-devrandom=/dev/urandom ifeq (${ADK_PACKAGE_APR_THREADING},y) diff --git a/package/autossh/Makefile b/package/autossh/Makefile index 414bf99e6..b5e184463 100644 --- a/package/autossh/Makefile +++ b/package/autossh/Makefile @@ -20,6 +20,7 @@ include $(TOPDIR)/mk/package.mk $(eval $(call PKG_template,AUTOSSH,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) CONFIGURE_STYLE:= gnu +CONFIGURE_ARGS+= ac_cv_lib_nsl_gethostbyname=no BUILD_STYLE:= auto do-install: diff --git a/package/avahi/files/avahi-daemon.conf b/package/avahi/files/avahi-daemon.conf index a5ff88619..cf1385644 100644 --- a/package/avahi/files/avahi-daemon.conf +++ b/package/avahi/files/avahi-daemon.conf @@ -5,7 +5,6 @@ use-ipv4=yes use-ipv6=no check-response-ttl=no use-iff-running=no -enable-dbus=no [publish] publish-addresses=yes diff --git a/package/base-files/extra/etc/sysctl.conf b/package/base-files/extra/etc/sysctl.conf index e69de29bb..73260cf9d 100644 --- a/package/base-files/extra/etc/sysctl.conf +++ b/package/base-files/extra/etc/sysctl.conf @@ -0,0 +1,17 @@ +# Disables the magic-sysrq key +#kernel.sysrq = 0 +# When the kernel panics, automatically reboot in 3 seconds +#kernel.panic = 3 +# Enable packet forwarding +#net.ipv4.ip_forward = 1 +# Disables IP dynaddr +#net.ipv4.ip_dynaddr = 0 +# Disable ECN +#net.ipv4.tcp_ecn = 0 +# Enables source route verification +net.ipv4.conf.default.rp_filter = 1 +# Enable reverse path +net.ipv4.conf.all.rp_filter = 1 +# Enable SYN cookies +#net.ipv4.tcp_syncookies = 1 + diff --git a/package/base-files/extra/init b/package/base-files/extra/init index 567993cbb..0d4f3d623 100755 --- a/package/base-files/extra/init +++ b/package/ |