wok rev 3635

busybox/syslogd: increase line size
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 11:19:50 2009 +0200 (2009-07-03)
parents f5e629e7cd6f
children aa0cd3e20671
files busybox-pam/receipt busybox/receipt busybox/stuff/busybox-1.12.0-syslogd.u
line diff
     1.1 --- a/busybox-pam/receipt	Fri Jul 03 11:14:22 2009 +0200
     1.2 +++ b/busybox-pam/receipt	Fri Jul 03 11:19:50 2009 +0200
     1.3 @@ -21,7 +21,7 @@
     1.4      while read file; do
     1.5      	[ -f done.$file ] && continue
     1.6      	echo "Apply $file..."
     1.7 -    	patch -p1 < $WOK/busybox/stuff/$SOURCE-$VERSION-$file || return 1
     1.8 +    	patch -p1 < $WOK/$SOURCE/stuff/$SOURCE-$VERSION-$file || return 1
     1.9  	touch done.$file
    1.10      done <<EOT
    1.11  vcsa2txt.u
    1.12 @@ -41,8 +41,9 @@
    1.13  ris.u
    1.14  dpkg_deb.u
    1.15  ionice.u
    1.16 +syslogd.u
    1.17  EOT
    1.18 -    cp $WOK/busybox/stuff/$SOURCE-$VERSION.config .config
    1.19 +    cp $WOK/$SOURCE/stuff/$SOURCE-$VERSION.config .config
    1.20      sed -i 's/# CONFIG_PAM is not set/CONFIG_PAM=y/' .config
    1.21      make oldconfig
    1.22      make && make install
    1.23 @@ -58,7 +59,7 @@
    1.24      cp -a stuff/etc $fs
    1.25      mkdir -p $fs/etc/init.d
    1.26      # Busybox config files.
    1.27 -    cd $WOK/busybox
    1.28 +    cd $WOK/$SOURCE
    1.29      fs=$WOK/$PACKAGE/taz/$PACKAGE-$VERSION/fs
    1.30      cp stuff/busybox.conf $fs/etc
    1.31      chmod 600 $fs/etc/busybox.conf
     2.1 --- a/busybox/receipt	Fri Jul 03 11:14:22 2009 +0200
     2.2 +++ b/busybox/receipt	Fri Jul 03 11:19:50 2009 +0200
     2.3 @@ -39,6 +39,7 @@
     2.4  ris.u
     2.5  dpkg_deb.u
     2.6  ionice.u
     2.7 +syslogd.u
     2.8  EOT
     2.9      cp ../stuff/$PACKAGE-$VERSION.config .config
    2.10      make oldconfig
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/busybox/stuff/busybox-1.12.0-syslogd.u	Fri Jul 03 11:19:50 2009 +0200
     3.3 @@ -0,0 +1,11 @@
     3.4 +--- busybox-1.12.0/sysklogd/syslogd.c
     3.5 ++++ busybox-1.12.0/sysklogd/syslogd.c
     3.6 +@@ -44,7 +44,7 @@
     3.7 + #undef SYSLOGD_MARK
     3.8 + 
     3.9 + enum {
    3.10 +-	MAX_READ = 256,
    3.11 ++	MAX_READ = 1024,
    3.12 + 	DNS_WAIT_SEC = 2 * 60,
    3.13 + };
    3.14 +