You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <rap...@us...> - 2003-12-20 03:36:45
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5134/scripts Modified Files: build.sh Log Message: added option to disable logging on build process Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- build.sh 17 Dec 2003 14:55:47 -0000 1.61 +++ build.sh 20 Dec 2003 03:36:42 -0000 1.62 @@ -289,7 +289,11 @@ t1=$(date +"%s") if [ -z "$RUN_ONLY_CMD" ];then - $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT + if [ -z "$CONFIG_DISABLELOGGING" ]; then + $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT + else + $MYDIR/$SCRIPT $CMD + fi else $MYDIR/$SCRIPT $CMD fi |
From: Diego T. <dt...@co...> - 2003-12-20 03:30:39
|
On Fri, Dec 19, 2003 at 10:21:44PM -0500, Bruce Smith wrote: > > i need to see the progress of the building, mainly because when there is something > > missing on the .config linux file, the make build stays quiet and paused for > > ever :) > > You couldn't find the problem from the log file? first you have to notice if the build process is working or not, for example with a tail -f of each logfile... bluegh! :) > BTW, have you compiled a 2.6 kernel yet? They made the same change in > the output of the compile. but you see the how the gcc progresses through each file. -- -- gnupg keyfingerprint -- 48AF 5BF9 8F54 2966 64CC 2327 7CD0 DD91 B09D 5799 -- Use of a keyboard or mouse may be linked to serious injuries or disorders. Diego Torres - dtorres at anthalia dot org - Madrid / España |
From: Bruce S. <bw...@ar...> - 2003-12-20 03:21:52
|
> > Just put it as an option in "menuconfig" under "Build System Configuration" > > But I would rather call it "disable build system logfiles" > > fair :) Sounds good to me. :-) > i need to see the progress of the building, mainly because when there is something > missing on the .config linux file, the make build stays quiet and paused for > ever :) You couldn't find the problem from the log file? BTW, have you compiled a 2.6 kernel yet? They made the same change in the output of the compile. - BS |
From: Diego T. <dt...@co...> - 2003-12-20 03:04:49
|
On Fri, Dec 19, 2003 at 09:52:11PM -0500, Heiko Zuerker wrote: > Just put it as an option in "menuconfig" under "Build System Configuration" > But I would rather call it "disable build system logfiles" fair :) i need to see the progress of the building, mainly because when there is something missing on the .config linux file, the make build stays quiet and paused for ever :) -- -- gnupg keyfingerprint -- 48AF 5BF9 8F54 2966 64CC 2327 7CD0 DD91 B09D 5799 -- Use of a keyboard or mouse may be linked to serious injuries or disorders. Diego Torres - dtorres at anthalia dot org - Madrid / España |
From: Heiko Z. <he...@zu...> - 2003-12-20 02:56:20
|
Bruce Smith wrote: >>>+ if [ -z "$RUN_ONLY_CMD" ];then >>>+ $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT >>>+ else >>>+ $MYDIR/$SCRIPT $CMD >>>+ fi >>> >>> >>maybe we could make the "&>" stuff optional ? i find rather annoying not >>seeing what is going on in the compilation process. if no one has anything >>against, i'll send a little patch to read from command line something like: >> >>Do you want to log the output of the build process [Y/n] ? >> >> > >NO NO NO!!! Do NOT make it a question! > >I run "make mrproper unpack prepare build install iso" as one line and >go to bed. I do NOT want to come back the next day and see it asking me >a question. I want a finished ISO image! > >There are other ways to do it without hanging up the script. But don't >do it on my account, I like the look of the new output. :-) > > Just put it as an option in "menuconfig" under "Build System Configuration" But I would rather call it "disable build system logfiles" Heiko |
From: <smi...@us...> - 2003-12-20 02:49:09
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv31645/scripts Modified Files: make Log Message: use correct path name Index: make =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/make,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- make 20 Dec 2003 01:39:46 -0000 1.1 +++ make 20 Dec 2003 02:49:03 -0000 1.2 @@ -38,7 +38,7 @@ copy_docs $WORKDIR/tmp - cp -dpR $WORKDIR/tmp/bin/* $CDDIR/bin/ || exit 1 + cp -dpR $WORKDIR/tmp/usr/bin/* $CDDIR/usr/bin/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; |
From: Bruce S. <bw...@ar...> - 2003-12-20 02:16:48
|
> > + if [ -z "$RUN_ONLY_CMD" ];then > > + $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT > > + else > > + $MYDIR/$SCRIPT $CMD > > + fi > > maybe we could make the "&>" stuff optional ? i find rather annoying not > seeing what is going on in the compilation process. if no one has anything > against, i'll send a little patch to read from command line something like: > > Do you want to log the output of the build process [Y/n] ? NO NO NO!!! Do NOT make it a question! I run "make mrproper unpack prepare build install iso" as one line and go to bed. I do NOT want to come back the next day and see it asking me a question. I want a finished ISO image! There are other ways to do it without hanging up the script. But don't do it on my account, I like the look of the new output. :-) - BS |
From: <smi...@us...> - 2003-12-20 02:05:20
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv25688/scripts/config Modified Files: buildorder.conf Log Message: - added automake v1.8 to build system - added autoconf v2.58 to build system Index: buildorder.conf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/buildorder.conf,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- buildorder.conf 20 Dec 2003 00:10:11 -0000 1.10 +++ buildorder.conf 20 Dec 2003 02:05:17 -0000 1.11 @@ -4,7 +4,7 @@ $libs glibc uclibc gmp ncurses zlib ncurses popt readline libol db-4 libxml2 libusb libpcap libjpeg lzo cyrus-sasl bzip2 opt gdbm glib pkgconfig fam libmcrypt libgcrypt openldap pwlib attr acl krb5 wvstreams postgresql mysql gnupg mcrypt mhash tcp_wrappers expat libpng libxslt gd imap pcre -$basebuildtools distcc gcc bison makedepend libtool binutils nasm +$basebuildtools distcc gcc bison makedepend libtool binutils nasm autoconf automake $installbase prepare create_cd_dirs create_etc |
From: <smi...@us...> - 2003-12-20 02:05:20
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25688/scripts Added Files: autoconf automake Log Message: - added automake v1.8 to build system - added autoconf v2.58 to build system --- NEW FILE: autoconf --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/autoconf,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 02:05:17 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: autoconf # Required-Start: gcc libtool binutils # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --disable-nls || exit 1 make all $PMAKE || exit 1 make install || exit 1 strip_debug ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: automake --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/automake,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 02:05:17 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: automake # Required-Start: gcc libtool binutils autoconf # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --disable-nls || exit 1 make all $PMAKE || exit 1 make install || exit 1 strip_debug ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2003-12-20 02:05:20
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv25688 Modified Files: CHANGES Log Message: - added automake v1.8 to build system - added autoconf v2.58 to build system Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.593 retrieving revision 1.594 diff -u -d -r1.593 -r1.594 --- CHANGES 20 Dec 2003 01:39:46 -0000 1.593 +++ CHANGES 20 Dec 2003 02:05:17 -0000 1.594 @@ -23,6 +23,9 @@ # 1.1.1 +- added automake v1.8 to build system +- added autoconf v2.58 to build system +- updated net-snmp to v5.1 - added make v3.8.0 - added sed v4.0.8 - added grep v2.5.1 |
From: <rap...@us...> - 2003-12-20 01:46:01
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv22884/scripts/config Modified Files: config_linux.alsa Log Message: update to 2.4.23 Index: config_linux.alsa =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/config_linux.alsa,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- config_linux.alsa 2 Nov 2003 16:20:27 -0000 1.2 +++ config_linux.alsa 20 Dec 2003 01:45:54 -0000 1.3 @@ -53,3 +53,7 @@ # CONFIG_SOUND_UART6850 is not set # CONFIG_SOUND_AEDSP16 is not set # CONFIG_SOUND_TVMIXER is not set +# CONFIG_SOUND_AD1980 is not set +# CONFIG_SOUND_WM97XX is not set + + \ No newline at end of file |
From: Diego T. <dt...@co...> - 2003-12-20 01:40:06
|
On Wed, Dec 17, 2003 at 06:55:49AM -0800, smi...@us... wrote: > + if [ -z "$RUN_ONLY_CMD" ];then > + $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT > + else > + $MYDIR/$SCRIPT $CMD > + fi maybe we could make the "&>" stuff optional ? i find rather annoying not seeing what is going on in the compilation process. if no one has anything against, i'll send a little patch to read from command line something like: Do you want to log the output of the build process [Y/n] ? -- -- gnupg keyfingerprint -- 48AF 5BF9 8F54 2966 64CC 2327 7CD0 DD91 B09D 5799 -- Use of a keyboard or mouse may be linked to serious injuries or disorders. Diego Torres - dtorres at anthalia dot org - Madrid / España |
From: <smi...@us...> - 2003-12-20 01:39:49
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv22103/scripts/config Modified Files: copy_base.lst Log Message: - added make v3.8.0 - added sed v4.0.8 - added grep v2.5.1 Index: copy_base.lst =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/copy_base.lst,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- copy_base.lst 1 Nov 2003 21:24:53 -0000 1.36 +++ copy_base.lst 20 Dec 2003 01:39:46 -0000 1.37 @@ -8,7 +8,3 @@ /bin/bash $CDDIR/bin /bin/sh $CDDIR/bin -/usr/bin/make $CDDIR/usr/bin -/bin/sed $CDDIR/bin -/bin/grep $CDDIR/bin -/bin/egrep $CDDIR/bin |
From: <smi...@us...> - 2003-12-20 01:39:49
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv22103/scripts Added Files: grep make sed Log Message: - added make v3.8.0 - added sed v4.0.8 - added grep v2.5.1 --- NEW FILE: grep --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/grep,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 01:39:46 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: grep # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --bindir=/bin --disable-nls || exit 1 make all $PMAKE || exit 1 strip_debug ;; install ) rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 copy_docs $WORKDIR/tmp cp -dpR $WORKDIR/tmp/bin/* $CDDIR/bin/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: make --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/make,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 01:39:46 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: make # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --disable-nls || exit 1 make all $PMAKE || exit 1 strip_debug ;; install ) rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 copy_docs $WORKDIR/tmp cp -dpR $WORKDIR/tmp/bin/* $CDDIR/bin/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: sed --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/sed,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 01:39:46 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: sed # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr --bindir=/bin --disable-nls || exit 1 make all $PMAKE || exit 1 strip_debug ;; install ) rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 copy_docs $WORKDIR/tmp cp -dpR $WORKDIR/tmp/bin/* $CDDIR/bin/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2003-12-20 01:39:49
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv22103 Modified Files: CHANGES Log Message: - added make v3.8.0 - added sed v4.0.8 - added grep v2.5.1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.592 retrieving revision 1.593 diff -u -d -r1.592 -r1.593 --- CHANGES 20 Dec 2003 01:10:29 -0000 1.592 +++ CHANGES 20 Dec 2003 01:39:46 -0000 1.593 @@ -23,6 +23,9 @@ # 1.1.1 +- added make v3.8.0 +- added sed v4.0.8 +- added grep v2.5.1 - jail script now works fine with subdirectories - updated snort to v2.1.0 - added pcre v4.5 to build system |
From: <smi...@us...> - 2003-12-20 01:10:33
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs1:/tmp/cvs-serv18191/config/etc/init.d Modified Files: jail Log Message: - jail script now works fine with subdirectories Index: jail =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/jail,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- jail 20 Sep 2003 18:58:00 -0000 1.21 +++ jail 20 Dec 2003 01:10:30 -0000 1.22 @@ -82,7 +82,7 @@ { FILES=$1 [ -d "$FILES" ] && FILES=$FILES/* - for FILE in $(ls $FILES) + for FILE in $(ls -d $FILES) do TARGETDIR=${FILE%/*} FILE=$FILE |
From: <smi...@us...> - 2003-12-20 01:10:33
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv18191 Modified Files: CHANGES Log Message: - jail script now works fine with subdirectories Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.591 retrieving revision 1.592 diff -u -d -r1.591 -r1.592 --- CHANGES 20 Dec 2003 00:09:49 -0000 1.591 +++ CHANGES 20 Dec 2003 01:10:29 -0000 1.592 @@ -23,6 +23,7 @@ # 1.1.1 +- jail script now works fine with subdirectories - updated snort to v2.1.0 - added pcre v4.5 to build system - updated jfsutils to v1.1.4 |
From: <smi...@us...> - 2003-12-20 00:10:14
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv8744/scripts/config Modified Files: buildorder.conf Log Message: added pcre to list of libraries Index: buildorder.conf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/buildorder.conf,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- buildorder.conf 22 Nov 2003 02:04:45 -0000 1.9 +++ buildorder.conf 20 Dec 2003 00:10:11 -0000 1.10 @@ -2,7 +2,7 @@ # All local filesystems are mounted (done during boot phase) # -$libs glibc uclibc gmp ncurses zlib ncurses popt readline libol db-4 libxml2 libusb libpcap libjpeg lzo cyrus-sasl bzip2 opt gdbm glib pkgconfig fam libmcrypt libgcrypt openldap pwlib attr acl krb5 wvstreams postgresql mysql gnupg mcrypt mhash tcp_wrappers expat libpng libxslt gd imap +$libs glibc uclibc gmp ncurses zlib ncurses popt readline libol db-4 libxml2 libusb libpcap libjpeg lzo cyrus-sasl bzip2 opt gdbm glib pkgconfig fam libmcrypt libgcrypt openldap pwlib attr acl krb5 wvstreams postgresql mysql gnupg mcrypt mhash tcp_wrappers expat libpng libxslt gd imap pcre $basebuildtools distcc gcc bison makedepend libtool binutils nasm |
From: <smi...@us...> - 2003-12-20 00:09:53
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv8576/scripts Added Files: pcre Log Message: updates and added pcre (for snort) --- NEW FILE: pcre --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/pcre,v $ # $Revision: 1.1 $ # $Date: 2003/12/20 00:09:50 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: pcre # Required-Start: $basebuildtools glibc # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) ./configure --prefix=/usr || exit 1 make $PMAKE all || exit 1 strip_debug # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2003-12-20 00:09:53
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv8576 Modified Files: CHANGES Log Message: updates and added pcre (for snort) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.590 retrieving revision 1.591 diff -u -d -r1.590 -r1.591 --- CHANGES 19 Dec 2003 22:40:55 -0000 1.590 +++ CHANGES 20 Dec 2003 00:09:49 -0000 1.591 @@ -23,6 +23,15 @@ # 1.1.1 +- updated snort to v2.1.0 +- added pcre v4.5 to build system +- updated jfsutils to v1.1.4 +- updated sagator to v20031201 +- updated iANS to v2.3.63b +- updated e1000 to v5.2.22 +- updated e100 to v2.3.33 +- updated cyrus-sasl to v2.1.17 +- updated cyrus-imapd to v2.1.16 - updated busybox to v1.00-pre4 - updated loop-AES to v2.0d - updated wireless_tools to v26 |
From: <smi...@us...> - 2003-12-19 22:41:34
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv25455 Modified Files: CHANGES Log Message: new busybox release Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.589 retrieving revision 1.590 diff -u -d -r1.589 -r1.590 --- CHANGES 19 Dec 2003 00:29:51 -0000 1.589 +++ CHANGES 19 Dec 2003 22:40:55 -0000 1.590 @@ -23,6 +23,9 @@ # 1.1.1 +- updated busybox to v1.00-pre4 +- updated loop-AES to v2.0d +- updated wireless_tools to v26 - symlinked /doc to /usr/share/doc/devil-linux - added missing php.ini - added fblogo for devil tux logo during framebuffer boot mode (bs) |
From: <smi...@us...> - 2003-12-19 22:41:08
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv25455/scripts/config Modified Files: config_busybox Log Message: new busybox release Index: config_busybox =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/config_busybox,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- config_busybox 8 Nov 2003 21:04:24 -0000 1.10 +++ config_busybox 19 Dec 2003 22:41:01 -0000 1.11 @@ -22,7 +22,7 @@ # Build Options # CONFIG_STATIC=y -# CONFIG_LFS is not set +CONFIG_LFS=y # USING_CROSS_COMPILER is not set EXTRA_CFLAGS_OPTIONS="" @@ -37,24 +37,29 @@ # # CONFIG_AR is not set CONFIG_BUNZIP2=y -CONFIG_CPIO=y +# CONFIG_CPIO is not set # CONFIG_DPKG is not set # CONFIG_DPKG_DEB is not set CONFIG_GUNZIP=y CONFIG_FEATURE_GUNZIP_UNCOMPRESS=y CONFIG_GZIP=y # CONFIG_RPM2CPIO is not set -CONFIG_RPM=y +# CONFIG_RPM is not set CONFIG_TAR=y CONFIG_FEATURE_TAR_CREATE=y CONFIG_FEATURE_TAR_BZIP2=y CONFIG_FEATURE_TAR_EXCLUDE=y CONFIG_FEATURE_TAR_GZIP=y -CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY=y +# CONFIG_FEATURE_TAR_COMPRESS is not set +# CONFIG_FEATURE_TAR_OLDGNU_COMPATABILITY is not set CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y -CONFIG_FEATURE_UNARCHIVE_TAPE=y -CONFIG_UNCOMPRESS=y -CONFIG_UNZIP=y +# CONFIG_UNCOMPRESS is not set +# CONFIG_UNZIP is not set + +# +# Common options for cpio and tar +# +# CONFIG_FEATURE_UNARCHIVE_TAPE is not set # # Coreutils @@ -87,6 +92,7 @@ CONFIG_FEATURE_FANCY_HEAD=y # CONFIG_HOSTID is not set CONFIG_ID=y +# CONFIG_INSTALL is not set CONFIG_LENGTH=y CONFIG_LN=y CONFIG_LOGNAME=y @@ -109,12 +115,10 @@ CONFIG_REALPATH=y CONFIG_RM=y CONFIG_RMDIR=y -# CONFIG_SHA1SUM is not set +CONFIG_SHA1SUM=y CONFIG_SLEEP=y CONFIG_FEATURE_FANCY_SLEEP=y CONFIG_SORT=y -CONFIG_FEATURE_SORT_REVERSE=y -CONFIG_FEATURE_SORT_UNIQUE=y CONFIG_STTY=y CONFIG_SYNC=y CONFIG_TAIL=y @@ -156,6 +160,11 @@ CONFIG_FEATURE_HUMAN_READABLE=y # +# Common options for md5sum, sha1sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# # Console Utilities # # CONFIG_CHVT is not set @@ -173,6 +182,7 @@ # Debian Utilities # # CONFIG_MKTEMP is not set +# CONFIG_PIPE_PROGRESS is not set CONFIG_READLINK=y # CONFIG_RUN_PARTS is not set # CONFIG_START_STOP_DAEMON is not set @@ -185,7 +195,6 @@ CONFIG_FEATURE_AWK_MATH=y CONFIG_PATCH=y CONFIG_SED=y -CONFIG_FEATURE_SED_EMBEDED_NEWLINE=y # CONFIG_VI is not set # @@ -203,6 +212,10 @@ CONFIG_FEATURE_GREP_FGREP_ALIAS=y CONFIG_FEATURE_GREP_CONTEXT=y CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y # # Init Utilities @@ -236,8 +249,18 @@ # CONFIG_CROND is not set # CONFIG_CRONTAB is not set # CONFIG_DC is not set +CONFIG_DEVFSD=y +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_DEVFSD_DEBUG is not set # CONFIG_LAST is not set -# CONFIG_HDPARM is not set +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y # CONFIG_MAKEDEVS is not set # CONFIG_MT is not set # CONFIG_STRINGS is not set @@ -248,18 +271,15 @@ # Linux Module Utilities # CONFIG_INSMOD=y -# CONFIG_FEATURE_OLD_MODULE_INTERFACE is not set -CONFIG_FEATURE_NEW_MODULE_INTERFACE=y - -# -# Support new (post 2.1) Linux kernels (Forced enabled) -# +# CONFIG_FEATURE_2_2_MODULES is not set +CONFIG_FEATURE_2_4_MODULES=y +CONFIG_FEATURE_2_6_MODULES=y # CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set # CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set # CONFIG_FEATURE_INSMOD_LOADINKMEM is not set # CONFIG_FEATURE_INSMOD_LOAD_MAP is not set CONFIG_LSMOD=y -# CONFIG_FEATURE_QUERY_MODULE_INTERFACE is not set +CONFIG_FEATURE_QUERY_MODULE_INTERFACE=y CONFIG_MODPROBE=y CONFIG_RMMOD=y # CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set @@ -354,6 +374,7 @@ # System Logging Utilities # CONFIG_SYSLOGD=y +# CONFIG_FEATURE_ROTATE_LOGFILE is not set # CONFIG_FEATURE_REMOTE_LOG is not set # CONFIG_FEATURE_IPC_SYSLOG is not set CONFIG_KLOGD=y |
From: <smi...@us...> - 2003-12-19 14:09:09
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv16961/scripts Modified Files: functions Log Message: "list" was broken Index: functions =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/functions,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- functions 17 Dec 2003 14:55:47 -0000 1.42 +++ functions 19 Dec 2003 14:09:06 -0000 1.43 @@ -136,12 +136,20 @@ # parameters: menu type text variable function menu_add () { + eval SET=\$$4 + TYPE=$2 + TEXT=$3 + VARIABLE=$4 + MENU="" MENUOLD="" X="Main|${1// /___}" Y=${X//|/^} if [ -n "${Y%$CURRENTMENU*}" ]; then - return + Y="$Y^$VARIABLE" + if [ -n "${Y%$CURRENTMENU*}" ]; then + return + fi fi X="Main|${1// /___}" @@ -184,11 +192,6 @@ "\\" > "$WORKDIR/.menu$MENU" fi done - - eval SET=\$$4 - TYPE=$2 - TEXT=$3 - VARIABLE=$4 X=${X//|/^} |
From: <smi...@us...> - 2003-12-19 00:29:54
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv18583/scripts Modified Files: devildoc Log Message: - symlinked /doc to /usr/share/doc/devil-linux Index: devildoc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devildoc,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- devildoc 30 Oct 2003 00:02:36 -0000 1.10 +++ devildoc 19 Dec 2003 00:29:51 -0000 1.11 @@ -52,6 +52,8 @@ cp -dpR $CDDOCDIR/* $CDDIR/doc || exit 1 fi + ln -sf /doc $CDDIR/usr/share/doc/devil-linux || exit 1 + if [ "$CONFIG_DEVIL_MAN_ISO" != "y" ]; then rm -rf $CDDIR/usr/share/man/* || exit 1 rm -rf $CDDIR/usr/share/doc/* || exit 1 |
From: <smi...@us...> - 2003-12-19 00:29:54
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv18583 Modified Files: CHANGES Log Message: - symlinked /doc to /usr/share/doc/devil-linux Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.588 retrieving revision 1.589 diff -u -d -r1.588 -r1.589 --- CHANGES 19 Dec 2003 00:20:54 -0000 1.588 +++ CHANGES 19 Dec 2003 00:29:51 -0000 1.589 @@ -23,6 +23,7 @@ # 1.1.1 +- symlinked /doc to /usr/share/doc/devil-linux - added missing php.ini - added fblogo for devil tux logo during framebuffer boot mode (bs) - loop-aes doesn't get compiled with stack smashing protector anymore (broke the module) |