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: <smi...@us...> - 2004-01-08 01:09:51
|
Update of /cvsroot/devil-linux/build/config/etc/initrd In directory sc8-pr-cvs1:/tmp/cvs-serv7932/config/etc/initrd Modified Files: linuxrc Log Message: init system now first searches all devices for configuration and then for empty medias (Heiko + Tim Tait) Index: linuxrc =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- linuxrc 23 Dec 2003 16:05:33 -0000 1.52 +++ linuxrc 8 Jan 2004 01:09:48 -0000 1.53 @@ -76,7 +76,7 @@ PARTITIONS_IDE=`find /dev/ide/ -name "part*" 2> /dev/null` PARTITIONS_SCSI=`find /dev/scsi/ -name "part*" 2> /dev/null` FLOPPIES=`find /dev/floppy/ -name "?" 2> /dev/null` -CONFIG_SRC_LIST="$CDROM_IDE $CDROM_SCSI $PARTITIONS_SCSI $PARTITIONS_IDE $FLOPPIES" +CONFIG_SRC_LIST="$PARTITIONS_SCSI $PARTITIONS_IDE $CDROM_IDE $CDROM_SCSI $FLOPPIES" DL_CONFIG_SOURCE="" echo -e "Loading loop-AES module"; @@ -89,7 +89,7 @@ until [ -e /floppy/etc.tar.bz2 ] ; do for CFG_SRC in $CONFIG_SRC_LIST do - echo -e "Checking $CFG_SRC" + echo -e "Checking for configuration on $CFG_SRC" if mount -n -t auto $CFG_SRC /floppy >/dev/null 2>&1 ; then if [ -e /floppy/etc.tar.bz2 ] ; then @@ -100,43 +100,44 @@ continue 2 else umount /floppy # in case user swaps floppy when we are accepting input - # offer to copy the configuration file if device is not a CD - if [ ! "${CFG_SRC##/*/}" = "cd" ];then - beep; - $YELLOW - echo -e "\n*** Found empty configuration media. ***" - $NORMAL - echo -n "Should I copy default configuration to it?" + fi + fi + done + + # first pass looks for existing configuration, 2nd pass will create if none found + for CFG_SRC in $CONFIG_SRC_LIST + do + echo -e "Looking for empty configuation media on $CFG_SRC" + if mount -n -t auto $CFG_SRC /floppy >/dev/null 2>&1 ; then + # offer to copy the configuration file if device is not a CD + if [ ! "${CFG_SRC##/*/}" = "cd" ];then + umount /floppy # in case user swaps floppy when we are accepting input + beep; + $YELLOW + echo -e "\n*** Found empty configuration media. ***" + $NORMAL + echo -n "Should I copy default configuration to it?" + if ask_yes_no ; then + echo -n "Would you like to probe for SCSI controllers now?" if ask_yes_no ; then - echo -n "Would you like to probe for SCSI controllers now?" - if ask_yes_no ; then - /probe_all_scsi_modules - fi - if ! /mount_cdrom /cdrom noreboot ; then - $RED - echo -e "Cannot find CD drive - try probing for SCSI controllers" - $NORMAL - continue - fi - mount -n -t auto $CFG_SRC /floppy >/dev/null 2>&1 || continue - cp -i /cdrom/config/etc.tar.bz2 /floppy/ || continue - DL_CONFIG_SOURCE=$CFG_SRC - continue 2 + /probe_all_scsi_modules + fi + if ! /mount_cdrom /cdrom noreboot ; then + $RED + echo -e "Cannot find CD drive - try probing for SCSI controllers" + $NORMAL + continue fi + mount -n -t auto $CFG_SRC /floppy >/dev/null 2>&1 || continue + cp -i /cdrom/config/etc.tar.bz2 /floppy/ || continue + umount /cdrom + DL_CONFIG_SOURCE=$CFG_SRC + continue 2 fi fi fi done - if /mount_cdrom /floppy noreboot silent ; then - if [ -f /floppy/etc.tar.bz2 ]; then - $YELLOW - echo "Using custom configuration on CDROM." - $NORMAL - break - fi - umount /floppy - fi - #[ -n "$DL_CONFIG_SOURCE" ] && continue + beep; sleep 1; beep; sleep 1; beep; $RED echo -e "Please insert Configuration Media and press 'ENTER'" @@ -208,3 +209,4 @@ echo 'Please mail a bug report to bu...@de...' echo exit + |
From: <smi...@us...> - 2004-01-08 01:09:51
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7932 Modified Files: CHANGES Log Message: init system now first searches all devices for configuration and then for empty medias (Heiko + Tim Tait) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.637 retrieving revision 1.638 diff -u -d -r1.637 -r1.638 --- CHANGES 7 Jan 2004 00:49:26 -0000 1.637 +++ CHANGES 8 Jan 2004 01:09:48 -0000 1.638 @@ -22,6 +22,8 @@ # 1.1.2 +- init system now first searches all devices for configuration and then + for empty medias (Heiko + Tim Tait) - added rsync v2.6.0 - updated tiff to v3.6.1 - updated psmisc to v21.4 |
From: <rap...@us...> - 2004-01-07 23:41:47
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv23348/scripts Modified Files: lm_sensors Log Message: cosmetic changes, going for a release Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/lm_sensors,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- lm_sensors 7 Jan 2004 19:22:57 -0000 1.8 +++ lm_sensors 7 Jan 2004 23:41:44 -0000 1.9 @@ -7,7 +7,7 @@ ### BEGIN INIT INFO # Provides: lm_sensors -# Required-Start: $network $syslog loadkeys +# Required-Start: $network $syslog # Required-Stop: $network $syslog # Default-Start: 3 5 # Default-Stop: 0 1 6 |
From: <rap...@us...> - 2004-01-07 22:27:23
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5644/scripts Modified Files: alsa-driver Log Message: cosmetic changes, going for a release Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/alsa-driver,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- alsa-driver 7 Jan 2004 19:31:35 -0000 1.5 +++ alsa-driver 7 Jan 2004 22:27:20 -0000 1.6 @@ -38,6 +38,9 @@ modprobe snd-pcm-oss modprobe snd-mixer-oss print_status success + /bin/amixer -c0 sset Master,0 80% unmute + /bin/amixer -c0 sset Headphone,0 80% unmute + /bin/amixer -c0 sset PCM,0 60% unmute ;; stop) echo -en "UnLoading $NAME: " |
From: <rap...@us...> - 2004-01-07 22:27:23
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5644 Modified Files: alsa-utils Log Message: cosmetic changes, going for a release Index: alsa-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsa-utils,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- alsa-utils 5 Jan 2004 18:51:44 -0000 1.6 +++ alsa-utils 7 Jan 2004 22:27:20 -0000 1.7 @@ -48,8 +48,8 @@ copy_files $WORKDIR/tmp/usr/bin/ $CDDIR/ || exit 1 copy_files /usr/share/alsa/ $CDDIR/usr/share/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 - rm -rf /usr/include/alsa - rm -rf /usr/share/alsa +# rm -rf /usr/include/alsa +# rm -rf /usr/share/alsa fi ;; |
From: <rap...@us...> - 2004-01-07 19:31:39
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv27422/scripts/scripts Modified Files: alsa-driver Log Message: cosmetic changes, going for a release Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/alsa-driver,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- alsa-driver 7 Jan 2004 19:08:17 -0000 1.4 +++ alsa-driver 7 Jan 2004 19:31:35 -0000 1.5 @@ -13,7 +13,7 @@ source /etc/sysconfig/config # parameters -NAME="alsa driver" +NAME="alsa drivers" CONFIGNAME=ALSA_DRIVER DAEMON= PARAMETER= @@ -33,13 +33,14 @@ case "$1" in start) - echo -en "Starting $NAME: OK\n" + echo -en "Loading $NAME: " modprobe snd-via82xx modprobe snd-pcm-oss modprobe snd-mixer-oss + print_status success ;; stop) - echo -en "Shutting down $NAME: OK\n" + echo -en "UnLoading $NAME: " rmmod snd-pcm-oss rmmod snd-mixer-oss rmmod snd-via82xx @@ -52,6 +53,7 @@ rmmod snd rmmod soundcore rmmod snd-page-alloc + print_status success ;; restart) $0 stop |
From: <rap...@us...> - 2004-01-07 19:23:00
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25755/scripts/scripts Modified Files: blankscreen lm_sensors Log Message: cosmetic changes, going for a release Index: blankscreen =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/blankscreen,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- blankscreen 7 Jan 2004 19:08:17 -0000 1.3 +++ blankscreen 7 Jan 2004 19:22:57 -0000 1.4 @@ -41,9 +41,9 @@ /usr/bin/setterm -powersave off < /dev/tty$i /usr/bin/setterm -blank 0 < /dev/tty$i /usr/bin/setterm -powersave off < /dev/tty$i - echo -n " $i" + echo -n "$i " done - echo " done!" + print_status success ;; stop) ;; Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/lm_sensors,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- lm_sensors 7 Jan 2004 19:08:17 -0000 1.7 +++ lm_sensors 7 Jan 2004 19:22:57 -0000 1.8 @@ -38,6 +38,7 @@ case "$1" in start) + echo "Loading lm-sensors drivers: " # # mandatory modules # @@ -56,8 +57,10 @@ # needed example config for the epia6000+ motherboard # echo "123.0 128.0 0.0" > /proc/sys/dev/sensors/vt1211-isa-6000/temp3 + print_status success ;; stop) + echo "Unloading lm-sensors drivers: " # # undo :) # @@ -68,7 +71,7 @@ #/sbin/rmmod i2c-proc #/sbin/rmmod i2c-dev #/sbin/rmmod i2c-core - + print_status success ;; restart) $0 stop |
From: <rap...@us...> - 2004-01-07 19:08:20
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv23059/scripts/scripts Modified Files: alsa-driver blankscreen lm_sensors Log Message: cosmetic changes, going for a release Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/alsa-driver,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- alsa-driver 7 Dec 2003 16:18:54 -0000 1.3 +++ alsa-driver 7 Jan 2004 19:08:17 -0000 1.4 @@ -2,11 +2,11 @@ ### BEGIN INIT INFO # Provides: alsa-driver -# Required-Start: $basebuildtools $libs linux +# Required-Start: $network $syslog # Required-Stop: # Default-Start: 3 5 # Default-Stop: 0 1 6 -# Description: alsa sound support, 1st step +# Description: alsa sound support ### END INIT INFO # settings Index: blankscreen =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/blankscreen,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- blankscreen 6 Jan 2004 01:28:10 -0000 1.2 +++ blankscreen 7 Jan 2004 19:08:17 -0000 1.3 @@ -10,13 +10,13 @@ # Description: disables screen blanking ### END INIT INFO - -NAME="SCREEN_BLANKING" - # settings source /etc/sysconfig/config # parameters +NAME="disabling screen blanking" +CONFIGNAME="SCREEN_BLANKING" +DEMON= # source function library source /etc/init.d/functions @@ -27,6 +27,7 @@ base=${0##*/} link=${base#*[SK][0-9][0-9]} +# Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 @@ -42,7 +43,7 @@ /usr/bin/setterm -powersave off < /dev/tty$i echo -n " $i" done - echo "done" + echo " done!" ;; stop) ;; Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/lm_sensors,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- lm_sensors 6 Jan 2004 19:26:48 -0000 1.6 +++ lm_sensors 7 Jan 2004 19:08:17 -0000 1.7 @@ -7,20 +7,21 @@ ### BEGIN INIT INFO # Provides: lm_sensors -# Required-Start: $network $syslog +# Required-Start: $network $syslog loadkeys # Required-Stop: $network $syslog # Default-Start: 3 5 # Default-Stop: 0 1 6 # Description: starts lm_sensors ### END INIT INFO - -NAME="LM_SENSORS" - # settings source /etc/sysconfig/config # parameters +NAME="i2c/smbus services" +CONFIGNAME="LM_SENSORS" +DAEMON= +PARAMETER= # source function library source /etc/init.d/functions @@ -31,6 +32,7 @@ base=${0##*/} link=${base#*[SK][0-9][0-9]} +# Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 |
From: <rap...@us...> - 2004-01-07 19:08:20
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv23059/scripts Modified Files: smartmontools Log Message: cosmetic changes, going for a release Index: smartmontools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/smartmontools,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- smartmontools 5 Jan 2004 20:08:35 -0000 1.4 +++ smartmontools 7 Jan 2004 19:08:16 -0000 1.5 @@ -48,6 +48,7 @@ rm -rf $WORKDIR/tmp || exit 1 echo "# Start SMARTMonTools?" >> $CONFIGFILE echo "START_$MYNAME=no" >> $CONFIGFILE + echo >> $CONFIGFILE echo "HELP_$MYNAME=\"$MYNAME is a suite that performs S.M.A.R.T. tasks\"" >> $SOFTWAREHELP fi ;; |
From: <smi...@us...> - 2004-01-07 01:44:40
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv31725/scripts/scripts Modified Files: dovecot Log Message: kill leftover processes, so we can unmount Index: dovecot =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/dovecot,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- dovecot 26 Apr 2003 16:42:17 -0000 1.1 +++ dovecot 7 Jan 2004 01:44:37 -0000 1.2 @@ -52,6 +52,8 @@ stop) echo -n "Shutting down $NAME: " killproc $DAEMON + killall imap &> /dev/null + killall pop3 &> /dev/null ;; restart) $0 stop |
From: <smi...@us...> - 2004-01-07 00:49:30
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs1:/tmp/cvs-serv21488/scripts/configuration/help Added Files: rsync.help Log Message: added rsync --- NEW FILE: rsync.help --- CONFIG_RSYNC rsync is a replacement for rcp (and scp) that has many more features. It uses the "rsync algorithm" which provides a very fast method for remote files into sync. It does this by sending just the differences in the files across the link, without requiring that both sets of files are present at one of the ends of the link beforehand. |
From: <smi...@us...> - 2004-01-07 00:49:30
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv21488/scripts/configuration Added Files: rsync.config Log Message: added rsync --- NEW FILE: rsync.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/rsync.config,v $ # $Revision: 1.1 $ # $Date: 2004/01/07 00:49:27 $ # # http://www.devil-linux.org menu_add "Networking|Utilities" bool "RSYNC (a file transfer program to keep remote files in sync)" CONFIG_RSYNC |
From: <smi...@us...> - 2004-01-07 00:49:30
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv21488 Modified Files: CHANGES Log Message: added rsync Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.636 retrieving revision 1.637 diff -u -d -r1.636 -r1.637 --- CHANGES 6 Jan 2004 22:56:11 -0000 1.636 +++ CHANGES 7 Jan 2004 00:49:26 -0000 1.637 @@ -22,6 +22,7 @@ # 1.1.2 +- added rsync v2.6.0 - updated tiff to v3.6.1 - updated psmisc to v21.4 - updated procps to v3.1.15 |
From: <smi...@us...> - 2004-01-07 00:49:30
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv21488/scripts Added Files: rsync Log Message: added rsync --- NEW FILE: rsync --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/rsync,v $ # $Revision: 1.1 $ # $Date: 2004/01/07 00:49:27 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: rsync # 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 MYNAME=RSYNC case $1 in build ) if [ "$CONFIG_RSYNC" = "y" ]; then ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1 make $PMAKE all || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_RSYNC" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 copy_docs $WORKDIR/tmp cp -dpR $WORKDIR/tmp/usr $CDDIR || exit 1 rm -rf $WORKDIR/tmp || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2004-01-06 22:56:16
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv30644 Modified Files: CHANGES Log Message: a bunch of software updates Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.635 retrieving revision 1.636 diff -u -d -r1.635 -r1.636 --- CHANGES 5 Jan 2004 21:05:38 -0000 1.635 +++ CHANGES 6 Jan 2004 22:56:11 -0000 1.636 @@ -22,6 +22,12 @@ # 1.1.2 +- updated tiff to v3.6.1 +- updated psmisc to v21.4 +- updated procps to v3.1.15 +- updated libxml to v2.6.4 +- updated lftp to v2.6.11 +- updated kernel to v2.4.24 - added a working init script for smartmontools (rpd) - added non-blanking stuff to the sensors script (should be a good place) |
From: <rap...@us...> - 2004-01-06 19:26:51
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv11126/scripts/config Modified Files: config_linux Log Message: misc fixes and glitches Index: config_linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/config_linux,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -r1.67 -r1.68 --- config_linux 6 Jan 2004 01:14:45 -0000 1.67 +++ config_linux 6 Jan 2004 19:26:48 -0000 1.68 @@ -1020,7 +1020,7 @@ # # Network File Systems # -# CONFIG_CODA_FS is not set +CONFIG_CODA_FS=m # CONFIG_INTERMEZZO_FS is not set # CONFIG_NFS_FS is not set # CONFIG_NFS_V3 is not set @@ -1055,11 +1055,11 @@ # # Native Language Support # -CONFIG_NLS_DEFAULT="UTF-8" -CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_DEFAULT="iso8859-15" +CONFIG_NLS_CODEPAGE_437=m # CONFIG_NLS_CODEPAGE_737 is not set # CONFIG_NLS_CODEPAGE_775 is not set -CONFIG_NLS_CODEPAGE_850=y +CONFIG_NLS_CODEPAGE_850=m # CONFIG_NLS_CODEPAGE_852 is not set # CONFIG_NLS_CODEPAGE_855 is not set # CONFIG_NLS_CODEPAGE_857 is not set @@ -1079,7 +1079,7 @@ # CONFIG_NLS_ISO8859_8 is not set # CONFIG_NLS_CODEPAGE_1250 is not set # CONFIG_NLS_CODEPAGE_1251 is not set -CONFIG_NLS_ISO8859_1=y +CONFIG_NLS_ISO8859_1=m # CONFIG_NLS_ISO8859_2 is not set # CONFIG_NLS_ISO8859_3 is not set # CONFIG_NLS_ISO8859_4 is not set @@ -1092,7 +1092,7 @@ CONFIG_NLS_ISO8859_15=y # CONFIG_NLS_KOI8_R is not set # CONFIG_NLS_KOI8_U is not set -CONFIG_NLS_UTF8=y +CONFIG_NLS_UTF8=m # # Console drivers |
From: <rap...@us...> - 2004-01-06 19:26:51
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv11126/scripts/scripts Modified Files: lm_sensors Log Message: misc fixes and glitches Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/lm_sensors,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- lm_sensors 6 Jan 2004 01:14:45 -0000 1.5 +++ lm_sensors 6 Jan 2004 19:26:48 -0000 1.6 @@ -64,6 +64,7 @@ #/sbin/rmmod i2c-isa #/sbin/rmmod vt1211 #/sbin/rmmod i2c-proc + #/sbin/rmmod i2c-dev #/sbin/rmmod i2c-core ;; |
From: <rap...@us...> - 2004-01-06 19:26:51
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv11126/scripts Modified Files: glibc Log Message: misc fixes and glitches Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- glibc 4 Jan 2004 00:03:58 -0000 1.24 +++ glibc 6 Jan 2004 19:26:48 -0000 1.25 @@ -71,24 +71,28 @@ make localedata/install-locales install_root=$WORKDIR/tmp || exit 1 rm -rf $WORKDIR/tmp/usr/include || exit 1 rm -rf $WORKDIR/tmp/usr/info || exit 1 + cp -dpR $WORKDIR/tmp/usr/lib/locale $CDDIR/usr/lib/ || exit 1 rm -rf $WORKDIR/tmp/usr/lib || exit 1 rm -rf $WORKDIR/tmp/etc || exit 1 rm -rf $WORKDIR/tmp/sbin/sln || exit 1 - #rm -rf $WORKDIR/tmp/usr/share/i18n/* || exit 1 - #rm -rf $WORKDIR/tmp/usr/share/locale/* || exit 1 cp -dpR $WORKDIR/tmp/usr/share/* $CDDIR/usr/share || exit 1 rm -rf $WORKDIR/tmp/usr/share || exit 1 cp -dpR $WORKDIR/tmp/{sbin,usr} $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp/{sbin,usr} || exit 1 cp -dpR $WORKDIR/tmp/* $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 - mkdir -p $CDDIR/usr/lib/locale/ || exit 1 - - for i in es_ES fr_FR it_IT nl_NL pt_PT sv_FI de_DE - do - echo Generating locale: $i@euro - $CDDIR/usr/bin/localedef --inputfile=$CDDIR/usr/share/i18n/locales/$i@euro -c --charmap=$CDDIR/usr/share/i18n/charmaps/ISO-8859-15 --prefix=$CDDIR $i@euro || echo - done + + #mkdir -p $CDDIR/usr/lib/locale/ || exit 1 + #for i in es_ES fr_FR it_IT nl_NL pt_PT sv_FI de_DE + #do + # echo Generating locale: $i@euro + # $CDDIR/usr/bin/localedef --force --inputfile=$CDDIR/usr/share/i18n/locales/$i@euro -c --charmap=$CDDIR/usr/share/i18n/charmaps/ISO-8859-15 --prefix=$CDDIR $i.ISO-8859-15 || echo + #done + #for i in es_ES fr_FR it_IT nl_NL pt_PT sv_FI de_DE en_GB + #do + # echo Generating locale: $i@UTF-8 + # $CDDIR/usr/bin/localedef --force --inputfile=$CDDIR/usr/share/i18n/locales/$i -c --charmap=$CDDIR/usr/share/i18n/charmaps/UTF-8 --prefix=$CDDIR $i.UTF-8 || echo + #done ;; * ) |
From: <rap...@us...> - 2004-01-06 19:26:50
|
Update of /cvsroot/devil-linux/build/config/etc In directory sc8-pr-cvs1:/tmp/cvs-serv11126/config/etc Modified Files: profile Log Message: misc fixes and glitches Index: profile =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/profile,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- profile 17 Dec 2002 17:42:31 -0000 1.5 +++ profile 6 Jan 2004 19:26:48 -0000 1.6 @@ -1,9 +1,11 @@ # /etc/profile -alias ll='ls -l' -alias la='ls -la' -alias l='ls -alF' +#LSOPTIONS='--show-control-chars --color=auto' +alias ll='ls -l $LSOPTIONS' +alias la='ls -la $LSOPTIONS' +alias l='ls -alF $LSOPTIONS' +#PS1='[\u]:\h:\w\$ ' PS1='\u@\h:\w \$ ' PATH=/bin:/usr/bin:/sbin:/usr/sbin @@ -12,3 +14,9 @@ export INPUTRC=/etc/inputrc export TERM=linux export EDITOR=/usr/bin/nano + +##international support +##uncomment and modify as needed + +#export LANG=es_ES@euro +#export LC_ALL=es_ES@euro |
From: <rap...@us...> - 2004-01-06 12:52:30
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv18280 Modified Files: alsaplayer Log Message: what was doing -this- -here- :) Index: alsaplayer =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsaplayer,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- alsaplayer 26 Dec 2003 23:57:53 -0000 1.2 +++ alsaplayer 6 Jan 2004 12:52:27 -0000 1.3 @@ -32,8 +32,6 @@ build ) if [ "$CONFIG_ALSA_PLAYER" = "y" ]; then ./configure --prefix=/usr --disable-gtktest || exit 1 - #--sysconfdir=/etc --localstatedir=/var || exit 1 - ##--disable-lzo make $PMAKE || exit 1 strip_debug fi @@ -46,7 +44,6 @@ copy_files $WORKDIR/tmp/usr/bin $CDDIR/usr/ || exit 1 copy_files $WORKDIR/tmp/usr/lib $CDDIR/usr/ || exit 1 copy_docs $WORKDIR/tmp - exit 1 rm -rf $WORKDIR/tmp || exit 1 echo "HELP_$MYNAME=\"$MYNAME is a generic pcm player\"" >> $SOFTWAREHELP fi |
From: <smi...@us...> - 2004-01-06 02:38:17
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv17234/scripts/scripts Modified Files: Tag: rel-1-0-patches upgrade-config Log Message: backported upgrade-script added latest kernel patches Index: upgrade-config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/upgrade-config,v retrieving revision 1.6.2.3 retrieving revision 1.6.2.4 diff -u -d -r1.6.2.3 -r1.6.2.4 --- upgrade-config 26 Dec 2003 19:51:46 -0000 1.6.2.3 +++ upgrade-config 6 Jan 2004 02:38:14 -0000 1.6.2.4 @@ -95,19 +95,27 @@ for f in $(find etc root -type f -print) do + onoff="off" echo -n "." [ $f = "etc/Devil-release" ] && continue [ $f = "etc/issue" ] && continue [ $f = "etc/issue.net" ] && continue - [ $f = "etc/sysconfig/config" ] && continue - [ $f = "etc/sysconfig/config.default" ] && continue - [ $f = "etc/sysconfig/config.old" ] && continue [ $f = "etc/sysconfig/upgrade.log" ] && continue [ $f = "etc/sysconfig/software" ] && continue - [ $f = "etc/modules/modules.dep" ] && continue [ $f = "etc/mtab" ] && continue [ $f = "etc/.pwd.lock" ] && continue - cmp -s $f newconfig/$f || echo $f \"\" off \"$f\" >> $TMPD + [ $f = "etc/passwd" ] && continue + [ $f = "etc/passwd-" ] && continue + [ $f = "etc/group" ] && continue + [ $f = "etc/group-" ] && continue + [ $f = "etc/shadow" ] && continue + [ $f = "etc/shadow-" ] && continue + [ $f = "etc/gshadow" ] && continue + [ $f = "etc/gshadow-" ] && continue + [ "$(expr substr "$f" 1 12)" = "etc/modules/" ] && continue + [ "$(expr substr "$f" 1 20)" = "etc/sysconfig/config" ] && continue + [ "$(expr substr "$f" 1 17)" = "etc/ssh/ssh_host_" ] && onoff="on" + cmp -s $f newconfig/$f || echo $f \"\" $onoff \"$f\" >> $TMPD done msgbox "Please read:" "The next screen will let you select which of your old config files you want to copy to your new configuration \n\nBe VERY CAREFUL to only copy files you have customized. Copying other files could cause severe problems.\n\nNote: Selecting \"Help\" will display info about the current file, but upon return you will lose all selections made." @@ -220,12 +228,58 @@ cp -f etc/sysconfig/config newconfig/etc/sysconfig/config.old cp -f newconfig/etc/sysconfig/config newconfig/etc/sysconfig/config.default . etc/sysconfig/config - echo "Migrating /etc/sysconfig/config values " + echo "Migrating /etc/sysconfig/config values ..." echo for bs in $(grep -v -e '^ *#' -e '^ *$' etc/sysconfig/config|cut -f1 -d'=') do eval mod_config newconfig/etc/sysconfig/config ${bs} \"\$${bs}\" done +fi + +if askyesno "User and Group migration" "Do you want to migrate your old users, groups and passwords?" yes ; then + migrateid () + { + cp -f newconfig/${1} newconfig/${1}- + cp -f newconfig/${2} newconfig/${2}- + > newconfig/${2} + + # Migrate passwords for existing users/groups + while read id ; do + name="$(echo $id|cut -d: -f1)" + if [ $(grep -c "^${name}:" ${2}) -ne 1 ]; then + grep "^${name}:" newconfig/${2}- >> newconfig/${2} + else + grep "^${name}:" ${2} >> newconfig/${2} + fi + [ "$(grep "^${name}:" ${2})" != "$(grep "^${name}:" newconfig/${2}-)" ] && \ + echo ${name} - info migrated. | tee -a $LOGF + done < newconfig/$1 + + # Add all non-existing users/groups to new config + while read id ; do + name="$(echo $id|cut -d: -f1)" + [ "$(grep -c "^${name}:" newconfig/${1})" -gt 0 ] && continue + grep "^${name}:" ${1} >> newconfig/${1} + grep "^${name}:" ${2} >> newconfig/${2} + echo ${name} - created. | tee -a $LOGF + done < $1 + } + + echo >> $LOGF + echo | tee -a $LOGF + echo "User migration:" | tee -a $LOGF + echo "---------------" >> $LOGF + echo | tee -a $LOGF + + migrateid etc/passwd etc/shadow + + echo >> $LOGF + echo | tee -a $LOGF + echo "Group migration:" | tee -a $LOGF + echo "----------------" >> $LOGF + echo | tee -a $LOGF + + migrateid etc/group etc/gshadow fi rm -fr $TMPD $RESULT |
From: <smi...@us...> - 2004-01-06 02:38:17
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv17234 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: backported upgrade-script added latest kernel patches Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.46 retrieving revision 1.510.2.47 diff -u -d -r1.510.2.46 -r1.510.2.47 --- CHANGES 26 Dec 2003 19:51:46 -0000 1.510.2.46 +++ CHANGES 6 Jan 2004 02:38:13 -0000 1.510.2.47 @@ -23,6 +23,8 @@ # 1.0.4 +- removed gcc, binutils, distcc from standard +- backported Kernel 2.4.24 patches (rtc info leak, mremap vulnerability) - upgrade-config now correctly sets directory permissions and owner/group - jail script has new command DELETE - domino jail script now empties the lib and etc directories before creating the jail |
From: <smi...@us...> - 2004-01-06 02:36:48
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs1:/tmp/cvs-serv17063 Added Files: Tag: rel-1-0-patches default Log Message: added default configuration --- NEW FILE: default --- CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_WGET=y CONFIG_TCPDUMP=y CONFIG_JFTPGW=y CONFIG_SQUID=y CONFIG_DDT=y CONFIG_LYNX=y CONFIG_MC=y CONFIG_VIM=y CONFIG_PYTHON_LDAP=y CONFIG_PERL=y CONFIG_CVS=y CONFIG_DEVIL_DOC_ISO=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_WGET=y CONFIG_TCPDUMP=y CONFIG_JFTPGW=y CONFIG_SQUID=y CONFIG_DDT=y CONFIG_LYNX=y CONFIG_MC=y CONFIG_VIM=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_WGET=y CONFIG_TCPDUMP=y CONFIG_JFTPGW=y CONFIG_SQUID=y CONFIG_DDT=y CONFIG_LYNX=y CONFIG_MC=y CONFIG_VIM=y CONFIG_PYTHON_LDAP=y CONFIG_PERL=y CONFIG_CVS=y CONFIG_DEVIL_DOC_ISO=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_WGET=y CONFIG_TCPDUMP=y CONFIG_JFTPGW=y CONFIG_SQUID=y CONFIG_DDT=y CONFIG_LYNX=y CONFIG_MC=y CONFIG_VIM=y CONFIG_PYTHON_LDAP=y CONFIG_PERL=y CONFIG_CVS=y CONFIG_DEVIL_DOC_ISO=y CONFIG_NF_PENDING=y CONFIG_NF_BASE=y CONFIG_FREESWAN=y CONFIG_FREESWAN_ALG=y CONFIG_X509_FREESWAN=y CONFIG_LVM=y CONFIG_MDADM=y CONFIG_BRIDGE_UTILS=y CONFIG_IPROUTE2=y CONFIG_PPP=y CONFIG_RPPPPOE=y CONFIG_PORTSLAVE=y CONFIG_POPTOP=y CONFIG_ZEBRA=y CONFIG_VLAN=y CONFIG_POSTFIX=y CONFIG_POSTFIX_TLS=y CONFIG_VTUN=y CONFIG_OPENVPN=y CONFIG_PYTHON=y CONFIG_CYRUS_SASL=y CONFIG_FWLOGWATCH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENSSH=y CONFIG_STUNNEL=y CONFIG_ARPWATCH=y CONFIG_SNORT=y CONFIG_MYSQL_CLIENT=y CONFIG_LOGROTATE=y CONFIG_CRON=y CONFIG_THTTPD=y CONFIG_IANS=y CONFIG_IPTRAF=y CONFIG_CYRUS_IMAPD=y CONFIG_XINETD=y CONFIG_NO_IP_UPDATER=y CONFIG_DDUP=y CONFIG_ISC_DHCP=y CONFIG_NTP=y CONFIG_RRLOGIND=y CONFIG_OPENLDAPLIB=y CONFIG_OPENLDAPCLIENT=y CONFIG_QADSL=y CONFIG_PPTP_CLIENT=y CONFIG_ISC_BIND=y CONFIG_WGET=y CONFIG_TCPDUMP=y CONFIG_JFTPGW=y CONFIG_SQUID=y CONFIG_DDT=y CONFIG_LYNX=y CONFIG_MC=y CONFIG_VIM=y CONFIG_PYTHON_LDAP=y CONFIG_PERL=y CONFIG_CVS=y CONFIG_DEVIL_DOC_ISO=y CONFIG_DEVIL_MAN_ISO=y CONFIG_FETCHMAIL=y CONFIG_FREESWAN_NOTIFY=y CONFIG_FREESWAN_NAT=y CONFIG_SG3_UTILS=y CONFIG_HOTPLUG=y CONFIG_LIBSTDC_COMPAT=y CONFIG_POSTGRESQL_CLIENT=y CONFIG_CPQARRAYD=y CONFIG_OIDENTD=y CONFIG_NF_EXTRA=y CONFIG_LFTP=y CONFIG_MGETTY=y CONFIG_NETACCT=y CONFIG_RPM=y CONFIG_WVDIAL=y CONFIG_GRSECURITY=y CONFIG_DOVECOT=y CONFIG_USE_DISTCC=n CONFIG_PMAKE=1 CONFIG_CIPE=y CONFIG_MAIL_SPAMASSASSIN=y CONFIG_EZ_IPUPDATE=y CONFIG_SAMBA=y CONFIG_WATCHDOG=y CONFIG_WATCHDOG_PCWD=y CONFIG_DAEMONTOOLS=y CONFIG_DJBDNS=y CONFIG_UCSPI_TCP=y CONFIG_IPAC_NG=y CONFIG_PWLIB=y CONFIG_OPENH323=y CONFIG_OPENH323GK=y CONFIG_VSFTPD=y CONFIG_RAIDTOOLS=y CONFIG_NAIL=y CONFIG_WIRELESS_TOOLS=y CONFIG_ETHTOOL=y CONFIG_RCS=y CONFIG_MTOOLS=y CONFIG_PASSWDGEN=y CONFIG_PCIUTILS=y CONFIG_SYSSTAT=y CONFIG_USBUTILS=y CONFIG_JOE=y CONFIG_NCFTP=y CONFIG_TELNET_BSD=y CONFIG_GCC_STACK_PROTECTOR=y CONFIG_KERBEROS5=y CONFIG_CLAMAV=y CONFIG_SAGATOR=y CONFIG_FILE=y CONFIG_UNARJ=y CONFIG_LHA=y CONFIG_UNRAR=y CONFIG_ZIP=y CONFIG_UNZIP=y CONFIG_MINICOM=y CONFIG_CAMSOURCE=y CONFIG_JFS=y CONFIG_PDCVS=n CONFIG_MEMTEST86=y CONFIG_DOSFSTOOLS=y CONFIG_PCMCIA_CS=y CONFIG_LINUX_WLAN_NG=y CONFIG_HOSTAP=y CONFIG_NET_SNMP=y CONFIG_ISAPNPTOOLS=y CONFIG_EBTABLES=y CONFIG_LINUX_SMP=n CONFIG_CPU=486 CONFIG_BINUTILS=n CONFIG_DISTCCD=n CONFIG_GCC3=n |
From: <rap...@us...> - 2004-01-06 01:44:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv8057/scripts Modified Files: util-linux Log Message: again :) Index: util-linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/util-linux,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- util-linux 6 Jan 2004 01:14:44 -0000 1.18 +++ util-linux 6 Jan 2004 01:44:02 -0000 1.19 @@ -49,8 +49,8 @@ cp -dpR $WORKDIR/tmp/* $CDDIR/ || exit 1 rm -rf $WORKDIR/tmp || exit 1 cp $MYDIR/scripts/blankscreen $ETCDIR/etc/init.d || exit 1 - echo "# Disable screen blanking on APM?" >> $CONFIGFILE - echo "DISABLE_SCREEN_BLAKING=no" >> $CONFIGFILE + echo "# Disable screen blanking on APM (yes/no)?" >> $CONFIGFILE + echo "DISABLE_SCREEN_BLANKING=no" >> $CONFIGFILE echo >> $CONFIGFILE ;; |
From: <rap...@us...> - 2004-01-06 01:31:47
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5403 Modified Files: lzo oidentd openvpn vtun Log Message: fixing my own mistake Index: lzo =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/lzo,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- lzo 5 Jan 2004 18:51:44 -0000 1.6 +++ lzo 6 Jan 2004 01:31:44 -0000 1.7 @@ -1,7 +1,7 @@ #!/bin/bash -# $Source$Source$ -# $Revision$Revision$ -# $Date$Date$ +# $Source$ +# $Revision$ +# $Date$ # # http://www.devil-linux.org # Index: oidentd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/oidentd,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- oidentd 5 Jan 2004 18:51:44 -0000 1.13 +++ oidentd 6 Jan 2004 01:31:44 -0000 1.14 @@ -1,7 +1,7 @@ #!/bin/bash -# $Source$Source$ -# $Revision$Revision$ -# $Date$Date$ +# $Source$ +# $Revision$ +# $Date$ # # http://www.devil-linux.org # Index: openvpn =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/openvpn,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- openvpn 5 Jan 2004 18:51:44 -0000 1.9 +++ openvpn 6 Jan 2004 01:31:44 -0000 1.10 @@ -1,7 +1,7 @@ #!/bin/bash -# $Source$Source$ -# $Revision$Revision$ -# $Date$Date$ +# $Source$ +# $Revision$ +# $Date$ # # http://www.devil-linux.org # Index: vtun =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/vtun,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- vtun 5 Jan 2004 18:51:44 -0000 1.9 +++ vtun 6 Jan 2004 01:31:44 -0000 1.10 @@ -1,7 +1,7 @@ #!/bin/bash -# $Source$Source$ -# $Revision$Revision$ -# $Date$Date$ +# $Source$ +# $Revision$ +# $Date$ # # http://www.devil-linux.org # |