diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-05 19:58:50 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-06-05 19:58:50 +0200 |
commit | e874f84fdb6eb83d905a72b35d87398374594b97 (patch) | |
tree | 38ecc86989a194756836fa411c4bfb7c4b68913f | |
parent | 68e89ea1a3ec3690ddefbd97c45174f799847a16 (diff) |
more regressions found at runtime on alic1c
116 files changed, 1729 insertions, 4457 deletions
@@ -1,5 +0,0 @@ -- use kmod-template for external kernel modules -- optimize iptables package (libdirs depending on choosen kernel features) -- checksum for toolchain packages -- network scripts for wireless client / ap -- disable platforms zaurus / qemu etrax @@ -1,7 +1,7 @@ - rescue initramfs image (more archs, generic kernel config ) - usb boot via stick -- combine lvm2 + devicemapper package -- squid package update +- fix init scripts pidof? vs. killall +- rpath libtool problem fix - bind isc 9.6.1 - eglibc support - check mips -mno-abicalls @@ -12,4 +12,11 @@ - netbsd build - macos x build - openbsd build +- use kmod-template for external kernel modules +- optimize iptables package (libdirs depending on choosen kernel features) +- checksum for toolchain packages +- network scripts for wireless client / ap +- network scripts for pppoe +- fix platform zaurus +- test qemu etrax again - publish via trac+git 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/base-files/extra/init @@ -1,8 +1,9 @@ #!/bin/sh export PATH=/bin:/sbin:/usr/bin:/usr/sbin mount -nt proc proc /proc +size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo) mount -o nosuid,nodev,noexec -t sysfs sysfs /sys |