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: Serge L. <sma...@us...> - 2010-03-18 05:54:43
|
Update of /cvsroot/devil-linux/build/config/etc/initrd In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv24283/config/etc/initrd Modified Files: linuxrc mount_cdrom Log Message: - added virtio support Index: linuxrc =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/linuxrc,v retrieving revision 1.107 retrieving revision 1.108 diff -u -d -r1.107 -r1.108 --- linuxrc 21 Feb 2009 00:47:01 -0000 1.107 +++ linuxrc 18 Mar 2010 05:54:35 -0000 1.108 @@ -239,6 +239,12 @@ # we load the module to be sure we will be able to mount iso image modprobe loop > /dev/null 2>&1 +# virtio +if grep QEMU /proc/cpuinfo > /dev/null ; then + modprobe virtio_pci + modprobe virtio_blk +fi + # we load the modules based on information from sysfs for mod in $(find /sys/devices -name modalias -exec cat {} \; | sed 's/sv.*sd.*bc.*sc.*i*.//' ); do @@ -272,8 +278,9 @@ DEVICES_IDE=`find /dev -name "hd*" 2> /dev/null` CDROM_SCSI=`find /dev -name "sr*" 2> /dev/null` DISCS_SCSI=`find /dev -name "sd*" 2> /dev/null` +DISCS_VIRTIO=`find /dev -name "vd*" 2> /dev/null` FLOPPIES=`find /dev -name "fd*" 2> /dev/null` -CONFIG_SRC_LIST="$DISCS_SCSI $DEVICES_IDE $CDROM_SCSI $FLOPPIES" +CONFIG_SRC_LIST="$DISCS_VIRTIO $DISCS_SCSI $DEVICES_IDE $CDROM_SCSI $FLOPPIES" CONFIG_FILE="etc-mods.tar.bz2" CDROMS=$(grep -i "drive name" /proc/sys/dev/cdrom/info) Index: mount_cdrom =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/initrd/mount_cdrom,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- mount_cdrom 5 Nov 2009 05:12:03 -0000 1.51 +++ mount_cdrom 18 Mar 2010 05:54:35 -0000 1.52 @@ -353,7 +353,8 @@ # ok let's check all partitions if we find the bootcd.iso & the file DEVIL-LINUX DEVICES_IDE=`find /dev -name "hd??" 2> /dev/null` DISCS_SCSI=`find /dev -name "sd??" 2> /dev/null` -DISCS="$DEVICES_IDE $DISCS_SCSI" +DEVICES_VIRTIO=`find /dev -name "vd??" 2> /dev/null` +DISCS="$DEVICES_VIRTIO $DEVICES_IDE $DISCS_SCSI" FILEMOUNT="/cd" if [ "$DEVICE_USER_ONLY" != "0" ]; then |
From: Serge L. <sma...@us...> - 2010-03-18 05:43:43
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv22567 Modified Files: Makefile.build Makefile.install Log Message: - added iperf - added irqbalance Index: Makefile.build =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile.build,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- Makefile.build 28 Feb 2010 16:55:53 -0000 1.10 +++ Makefile.build 18 Mar 2010 05:43:35 -0000 1.11 @@ -34,7 +34,7 @@ pam_mount neon GROUP_16 := e2fsprogs gdchart openldap pam_mysql postgresql \ - wvstreams + wvstreams iperf irqbalance GROUP_17 := cyrus-sasl nss_ldap pam-pgsql pam_ldap @@ -275,6 +275,10 @@ wvstreams: | $(GROUP_15) +iperf: | $(GROUP_15) + +irqbalance: | $(GROUP_15) + cyrus-sasl: | $(GROUP_16) nss_ldap: | $(GROUP_16) Index: Makefile.install =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile.install,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile.install 28 Feb 2010 16:55:53 -0000 1.8 +++ Makefile.install 18 Mar 2010 05:43:35 -0000 1.9 @@ -73,7 +73,7 @@ vim vlan vncrepeater vobcopy vsftpd \ vtun watchdog webalizer wget whois \ wireless_tools wol wvdial xfsprogs xinetd \ - yp-tools ypbind-mt ypserv zip + yp-tools ypbind-mt ypserv zip iperf irqbalance GROUP_20 := DenyHosts ImageMagick MySQL-python awstats bluez-libs \ clamav dcc dkim-milter dovecot_deleted_to_trash dspam \ @@ -602,6 +602,10 @@ zip: | $(GROUP_17) +iperf: | $(GROUP_17) + +irqbalance: | $(GROUP_17) + DenyHosts: | $(GROUP_19) ImageMagick: | $(GROUP_19) |
From: Serge L. <sma...@us...> - 2010-03-18 05:38:40
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv21751 Modified Files: default router server Log Message: - added iperf - added irqbalancer Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.109 retrieving revision 1.110 diff -u -d -r1.109 -r1.110 --- default 26 Feb 2010 23:26:13 -0000 1.109 +++ default 18 Mar 2010 05:38:30 -0000 1.110 @@ -244,3 +244,5 @@ CONFIG_DKIM_MILTER=y CONFIG_SENDMAIL_LIBMILTER=y CONFIG_GIT=y +CONFIG_IPERF=y +CONFIG_IRQBALANCE=y Index: router =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/router,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- router 29 Dec 2009 17:55:14 -0000 1.25 +++ router 18 Mar 2010 05:38:30 -0000 1.26 @@ -134,3 +134,5 @@ CONFIG_VMWARE=y CONFIG_LINUX_SYSRQ=n CONFIG_STRONGSWAN=y +CONFIG_IPERF=y +CONFIG_IRQBALANCE=y Index: server =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/server,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- server 26 Feb 2010 23:26:14 -0000 1.20 +++ server 18 Mar 2010 05:38:30 -0000 1.21 @@ -243,3 +243,5 @@ CONFIG_DKIM_MILTER=y CONFIG_SENDMAIL_LIBMILTER=y CONFIG_GIT=y +CONFIG_IPERF=y +CONFIG_IRQBALANCE=y |
From: Serge L. <sma...@us...> - 2010-03-18 05:32:58
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20897/scripts Added Files: iperf irqbalance Log Message: - added iperf, feature request #63 - added irqbalancer --- NEW FILE: iperf --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/iperf,v $ # $Revision: 1.1 $ # $Date: 2010/03/18 05:32:46 $ # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_IPERF" = "y" ]; then ./configure --prefix=/usr || exit 1 make all || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_IPERF" = "y" ]; then rm -rf $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 cp -dpR $TMPDIR/* $CDDIR/ || exit 1 rm -rf $TMPDIR || exit 1 fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: irqbalance --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/irqbalance,v $ # $Revision: 1.1 $ # $Date: 2010/03/18 05:32:46 $ # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) if [ "$CONFIG_IRQBALANCE" = "y" ]; then make ; make || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_IRQBALANCE" = "y" ]; then cp ./irqbalance $CDDIR/usr/sbin/ || exit 1 cp -p $MYDIR/scripts/irqbalance.init $ETCDIR/etc/init.d/irqbalance || exit 1 cp -p $MYDIR/scripts/irqbalance.sysconfig $ETCDIR/etc/sysconfig/irqbalance || exit 1 chmod +x $ETCDIR/etc/init.d/irqbalance fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: Serge L. <sma...@us...> - 2010-03-18 05:32:58
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20897/scripts/scripts Added Files: irqbalance.init irqbalance.sysconfig Log Message: - added iperf, feature request #63 - added irqbalancer --- NEW FILE: irqbalance.sysconfig --- # Bitmap of CPUs that are banned from IRQ balancing # IRQBALANCE_BANNED_CPUS="" # Instead of running as daemon, the IRQ balancer just does a setup # once and then exits. "auto" is the default behaviour which means that # one socket but multi core CPUs get a oneshot setup. "enabled" always # enables oneshot mode, regardless of the CPUs. # IRQBALANCE_ONESHOT=enabled # Interrupt that don't get balanced as list (separation character doesn't # matter). For example broken chipsets don't allow the timer interrupt # to be set to another CPU than the first, and with this option that # policy can be applied. # IRQBALANCE_BANNED_INTERRUPTS="" --- NEW FILE: irqbalance.init --- #! /bin/sh # # Based on SuSe init script: # Copyright (c) 1995-2002 SuSE Linux AG, Nuernberg, Germany. # All rights reserved. # ### BEGIN INIT INFO # Provides: irqbalance # Required-Start: $network # Required-Stop: # Default-Start: 1 2 3 5 # Default-Stop: 0 6 # Description: irqbalance daemon providing irq balancing on MP-machines ### END INIT INFO source /etc/sysconfig/config source /etc/sysconfig/irqbalance # parameters NAME=irqbalancer DAEMON=/usr/sbin/irqbalance #PARAMETER=oneshot PROC=$(grep -c '^processor' /proc/cpuinfo) # source function library source /etc/init.d/functions if [ ! -e $DAEMON ]; then echo echo "$DAEMON not found. Did you install the package?" exit 1 fi # don't start on 1 core systems # still check the number of processors here althought the irq # balancer terminates automatically if number_cpus == 0 # simply to provide a better user output ('unused' vs. 'done') if [ $PROC -le 1 ] ; then echo "$DAEMON doesn't work on 1 core systems." exit 1 fi if [ -n "$IRQBALANCE_BANNED_CPUS" ] ; then export IRQBALANCE_BANNED_CPUS fi if [ "$IRQBALANCE_ONESHOT" != "auto" ] ; then export IRQBALANCE_ONESHOT fi if [ -n "$IRQBALANCE_BANNED_INTERRUPTS" ] ; then export IRQBALANCE_BANNED_INTERRUPTS fi case "$1" in start) echo -n "Starting $NAME: " loadproc $DAEMON $PARAMETER ;; stop) echo -n "Shutting down $NAME: " killproc $DAEMON ;; restart) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 ;; esac |
From: Serge L. <sma...@us...> - 2010-03-18 05:32:57
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20897/scripts/configuration/help Added Files: iperf.help irqbalance.help Log Message: - added iperf, feature request #63 - added irqbalancer --- NEW FILE: iperf.help --- CONFIG_IPERF Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics. Iperf reports bandwidth, delay jitter, datagram loss. --- NEW FILE: irqbalance.help --- CONFIG_IRQBALANCE irqbalance is a Linux daemon that distributes interrupts over the processors and cores you have in your computer system. The design goal of irqbalance is to do find a balance between power savings and optimal performance. To a large degree, the work irqbalance does is invisible to you; if irqbalance performs its job right, nobody will ever notice it's there or want to turn it off. Home page is http://irqbalance.org/ |
From: Serge L. <sma...@us...> - 2010-03-18 05:32:57
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20897 Modified Files: md5sum.lst CHANGES Log Message: - added iperf, feature request #63 - added irqbalancer Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.558 retrieving revision 1.559 diff -u -d -r1.558 -r1.559 --- md5sum.lst 28 Feb 2010 21:32:06 -0000 1.558 +++ md5sum.lst 18 Mar 2010 05:32:47 -0000 1.559 @@ -200,6 +200,7 @@ fa021892240f49f6c8ca8c988eb915ee src/insserv-boot.diff.bz2 57035039daddd242ede848bdcde86ae5 src/insserv-core.diff.bz2 f9ed8a729145ae613b3cdc518f1750e3 src/ipac-ng-1.31.tar.bz2 +8c5bc14cc2ea55f18f22afe3c23e3dcb src/iperf-2.0.4.tar.gz e2401e65db26a3764585b97212888fae src/ippool-1.3.tar.gz 230f35282a95451622f3e8394f9cd80a src/iproute2-2.6.31.tar.bz2 821bd84e8d4ad5a93bf594b8b3d66e1e src/ipsec-tools-0.7.3.tar.bz2 @@ -211,6 +212,7 @@ e68bbd73b4e24e48673cec079b8036f9 src/iputils-20070202-open-max.patch.bz2 12245e9927d60ff5cf4a99d265bcb7d3 src/iputils-current.tar.bz2 772a053f5fe888cd25784c5f55d31fc3 src/ipvsadm-1.25.tar.gz +9f6b314ff1fdc14173abeb40592d4edf src/irqbalance-0.55.tar.gz 26def2016548edeafe383113f0bc8ac6 src/isapnptools-1.26.tgz 005794f513245b90a72072929e89760e src/iscsitarget-svn-20090413.tar.bz2 812c0fe189b86d3a8807b31e0c3ad3a2 src/j2re-1_4_1_02-linux-i586.tar.bz2 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1345 retrieving revision 1.1346 diff -u -d -r1.1345 -r1.1346 --- CHANGES 28 Feb 2010 21:32:06 -0000 1.1345 +++ CHANGES 18 Mar 2010 05:32:47 -0000 1.1346 @@ -22,6 +22,8 @@ # 1.4RC3 +- added iperf, feature request #63 (sl) +- added irqbalancer (sl) - updated parted to 2.2 (sl) - updated util-linux-ng to 2.17.1 (sl) - removed separate ipset script, this is now included via xtables-addons |
From: Serge L. <sma...@us...> - 2010-03-18 05:32:57
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv20897/scripts/configuration Added Files: iperf.config irqbalance.config Log Message: - added iperf, feature request #63 - added irqbalancer --- NEW FILE: iperf.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/iperf.config,v $ # $Revision: 1.1 $ # $Date: 2010/03/18 05:32:46 $ # http://www.devil-linux.org menu_add "Networking|Utilities" bool "Iperf" CONFIG_IPERF --- NEW FILE: irqbalance.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/irqbalance.config,v $ # $Revision: 1.1 $ # $Date: 2010/03/18 05:32:46 $ # # http://www.devil-linux.org menu_add "System|Services" bool "Irqbalance" CONFIG_IRQBALANCE |
From: Serge L. <sma...@us...> - 2010-02-28 21:32:16
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25997 Modified Files: md5sum.lst CHANGES Log Message: - updated parted to 2.2 - updated util-linux-ng to 2.17.1 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.557 retrieving revision 1.558 diff -u -d -r1.557 -r1.558 --- md5sum.lst 28 Feb 2010 20:03:08 -0000 1.557 +++ md5sum.lst 28 Feb 2010 21:32:06 -0000 1.558 @@ -365,8 +365,7 @@ 623edc50023b183c7b36a03353edcdf0 src/pam_mysql-0.6.2.tar.gz e6f90c8e57e236d45626d479feca2dc4 src/pam_otp_auth-3.2.2.tar.gz a5d27ccbaaad9d9fb254b01a3c12bd06 src/pam_radius-1.3.17.tar.gz -3155ce8e7b54fd7e2ac503297ac3d3d8 src/parted_1.8.8.git.2008.03.24-11.1.diff.gz -09a254cf69528b7fa4684f3c5d16112e src/parted_1.8.8.git.2008.03.24.orig.tar.gz +9c262afd6673d7724a60b7c632ce80fa src/parted-2.2.tar.gz 40dd0853d0c1c2cc019d6e2e8146555a src/passwdgen-1.diff.bz2 097cf193d1b040cf0d135945714faa83 src/passwdgen-2.2.tar.gz 7f615dd3b4a3b19fb86e479996a2deb5 src/patch-2.6.32.9.bz2 @@ -647,7 +646,8 @@ 9d23919999d6eac9217d1f41472034a9 src/unzip552.tar.gz 784fa54825984f7ac3dd98d62ce2a7c2 src/usb.ids.bz2 34979f675d2bcb3e1b45012fa830a53f src/usbutils-0.86.tar.gz -edd1f7a82fd388cc0e1e3d2d1e7ea55a src/util-linux-ng-2.16.2.tar.bz2 +c17756737b62529f365b46d2164cc50d src/util-linux-ng-2.17-20100120.patch.bz2 +1771802e8f4c795f72f06efb1fc61587 src/util-linux-ng-2.17.1.tar.bz2 3c80e4a6bc7d66ae0c235b88cb44bd59 src/vblade-20.tgz 821fda8f14d674346b87e3ef9cb96389 src/vim-6.3.tar.bz2 5f0c6060b33956fb16e11a15467dd394 src/vlan.1.9.tar.gz Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1344 retrieving revision 1.1345 diff -u -d -r1.1344 -r1.1345 --- CHANGES 28 Feb 2010 14:13:27 -0000 1.1344 +++ CHANGES 28 Feb 2010 21:32:06 -0000 1.1345 @@ -22,6 +22,8 @@ # 1.4RC3 +- updated parted to 2.2 (sl) +- updated util-linux-ng to 2.17.1 (sl) - removed separate ipset script, this is now included via xtables-addons - updated nfs-utils to 1.2.2 (sl) - updated nmap to 5.21 (sl) |
From: Serge L. <sma...@us...> - 2010-02-28 21:32:16
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25997/scripts Modified Files: parted util-linux Log Message: - updated parted to 2.2 - updated util-linux-ng to 2.17.1 Index: parted =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/parted,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- parted 6 Jan 2010 15:20:24 -0000 1.3 +++ parted 28 Feb 2010 21:32:07 -0000 1.4 @@ -18,7 +18,7 @@ build ) if [ ! -f .patch.done ]; then #From Debian - zcat $DL_DIR/src/parted_1.8.8.git.2008.03.24-11.1.diff.gz | patch -p1 || exit 1 + #zcat $DL_DIR/src/parted_1.8.8.git.2008.03.24-11.1.diff.gz | patch -p1 || exit 1 touch .patch.done fi Index: util-linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/util-linux,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- util-linux 6 Jan 2010 15:27:21 -0000 1.44 +++ util-linux 28 Feb 2010 21:32:07 -0000 1.45 @@ -18,9 +18,9 @@ build ) if [ ! -f util-linux-patch.done ]; then echo "patch loop-AES " - patch -p1 -i $(find_src_dir loop-AES)/util-linux-ng-*.diff || exit 1 + #patch -p1 -i $(find_src_dir loop-AES)/util-linux-ng-*.diff || exit 1 echo "other patches" - #bzcat $DL_DIR/src/util-linux*.patch.bz2 | patch -p1 || exit 1 + bzcat $DL_DIR/src/util-linux-ng-*.patch.bz2 | patch -p1 || exit 1 touch util-linux-patch.done fi |
From: Serge L. <sma...@us...> - 2010-02-28 20:03:25
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10140/scripts Modified Files: LVM2 Log Message: - userspace code of the Device-mapper (dmsetup and libdevmapper) is now maintained alongside the LVM2 source Index: LVM2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM2,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- LVM2 28 Feb 2010 19:56:53 -0000 1.11 +++ LVM2 28 Feb 2010 20:03:08 -0000 1.12 @@ -27,6 +27,7 @@ ;; install ) if [ "$CONFIG_LVM2" = "y" ]; then + rm -rf $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR rm -rf $TMPDIR/usr || exit 1 |
From: Serge L. <sma...@us...> - 2010-02-28 20:03:19
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10140 Modified Files: md5sum.lst Log Message: - userspace code of the Device-mapper (dmsetup and libdevmapper) is now maintained alongside the LVM2 source Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.556 retrieving revision 1.557 diff -u -d -r1.556 -r1.557 --- md5sum.lst 28 Feb 2010 14:13:27 -0000 1.556 +++ md5sum.lst 28 Feb 2010 20:03:08 -0000 1.557 @@ -91,7 +91,6 @@ 4cf4210e06a84e8d9354201ab97dc2e2 src/debianutils_3.2.1.tar.gz 7280094f6cc7952051031334d2fdfd14 src/denyhosts.diff.gz 29ade831880b2e0a91d4f49cb73a22dd src/denyhosts_2.5-3.diff.gz -c9ae0776994a419f9e1ba842164bb626 src/device-mapper.1.02.28.tgz f2b4dfe70640d33b29da6b75eb5c82a0 src/dhcp-4.1.1rc1.tar.gz d18afc66efbea9a28e541e9b10fd284f src/dhcpcd-5.1.4.tar.bz2 de491252e0329e67aed27d1d01eed120 src/dialog_0.9b-20030308.orig.tar.gz |
From: Serge L. <sma...@us...> - 2010-02-28 19:57:03
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv8359 Modified Files: LVM2 Log Message: - userspace code of Device-mapper (dmsetup and libdevmapper) is now maintained alongside the LVM2 source Index: LVM2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM2,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- LVM2 6 Jan 2010 14:53:27 -0000 1.10 +++ LVM2 28 Feb 2010 19:56:53 -0000 1.11 @@ -19,25 +19,14 @@ case $1 in build ) if [ "$CONFIG_LVM2" = "y" ]; then - pushd `pwd` - cd ../device-mapper* - ./configure - make $PMAKE || exit 1 - make install || exit 1 - popd - ./configure --exec-prefix= || exit 1 make $PMAKE all || exit 1 + make install_device-mapper || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_LVM2" = "y" ]; then - rm -rf $TMPDIR || exit 1 - pushd `pwd` - cd ../device-mapper* - make install DESTDIR=$TMPDIR || exit 1 - popd make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR rm -rf $TMPDIR/usr || exit 1 |
From: Heiko Z. <smi...@us...> - 2010-02-28 16:56:01
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv5394 Modified Files: Makefile.build Makefile.install Log Message: removed ipset Index: Makefile.build =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile.build,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- Makefile.build 26 Feb 2010 23:26:11 -0000 1.9 +++ Makefile.build 28 Feb 2010 16:55:53 -0000 1.10 @@ -102,7 +102,7 @@ php quagga shfs vblade vmmemctl \ vmware vmxnet -GROUP_24 := alsa-lib iANS ipac-ng ipset iptstate \ +GROUP_24 := alsa-lib iANS ipac-ng iptstate \ nrpe nsca util-linux GROUP_25 := alsaplayer libradius-linux @@ -863,8 +863,6 @@ ipac-ng: | $(GROUP_23) -ipset: | $(GROUP_23) - iptstate: | $(GROUP_23) nrpe: | $(GROUP_23) Index: Makefile.install =================================================================== RCS file: /cvsroot/devil-linux/build/Makefile.install,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.install 26 Feb 2010 23:26:11 -0000 1.7 +++ Makefile.install 28 Feb 2010 16:55:53 -0000 1.8 @@ -98,7 +98,7 @@ php quagga shfs vblade vmmemctl \ vmware vmxnet -GROUP_24 := alsa-lib iANS ipac-ng ipset iptstate \ +GROUP_24 := alsa-lib iANS ipac-ng iptstate \ nrpe nsca util-linux xtables-addons GROUP_25 := alsaplayer @@ -778,8 +778,6 @@ ipac-ng: | $(GROUP_23) -ipset: | $(GROUP_23) - iptstate: | $(GROUP_23) nrpe: | $(GROUP_23) |
From: Heiko Z. <smi...@us...> - 2010-02-28 14:14:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13608/scripts Removed Files: ipset Log Message: removed separate ipset script, this is now included via xtables-addons --- ipset DELETED --- |
From: Heiko Z. <smi...@us...> - 2010-02-28 14:13:36
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv13608 Modified Files: CHANGES md5sum.lst Log Message: removed separate ipset script, this is now included via xtables-addons Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1343 retrieving revision 1.1344 diff -u -d -r1.1343 -r1.1344 --- CHANGES 28 Feb 2010 13:54:39 -0000 1.1343 +++ CHANGES 28 Feb 2010 14:13:27 -0000 1.1344 @@ -22,7 +22,7 @@ # 1.4RC3 -- corrected ipset install (Heiko + Gabriel Hojda) +- removed separate ipset script, this is now included via xtables-addons - updated nfs-utils to 1.2.2 (sl) - updated nmap to 5.21 (sl) - updated ntp to 4.2.6 (sl) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.555 retrieving revision 1.556 diff -u -d -r1.555 -r1.556 --- md5sum.lst 28 Feb 2010 10:06:41 -0000 1.555 +++ md5sum.lst 28 Feb 2010 14:13:27 -0000 1.556 @@ -204,7 +204,6 @@ e2401e65db26a3764585b97212888fae src/ippool-1.3.tar.gz 230f35282a95451622f3e8394f9cd80a src/iproute2-2.6.31.tar.bz2 821bd84e8d4ad5a93bf594b8b3d66e1e src/ipsec-tools-0.7.3.tar.bz2 -92bb09883dd8a77ec5cfbff1c8932b15 src/ipset-3.0.tar.bz2 c67cf30e281a924def6426be0973df56 src/iptables-1.4.6.tar.bz2 377371c28ee3c21a76f7024920649ea8 src/iptraf-3.0.0.tar.gz b00084d8bd80b6af3cbc04d3e6fd32e2 src/iptraf-include-fix.diff.bz2 |
From: Heiko Z. <smi...@us...> - 2010-02-28 13:54:48
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10487/scripts Modified Files: ipset Log Message: corrected ipset install (Heiko + Gabriel Hojda) Index: ipset =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ipset,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ipset 6 Jan 2010 15:20:24 -0000 1.8 +++ ipset 28 Feb 2010 13:54:39 -0000 1.9 @@ -30,7 +30,7 @@ fi strip_debug # install it, so other programs can use it - make install || exit 1 + make install KERNEL_DIR=$KERNELDIR || exit 1 fi fi ;; @@ -40,8 +40,8 @@ if [ "$CONFIG_NF_BASE" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 - make install DESTDIR=$TMPDIR || exit 1 - copy_docs $TMPDIR + make install KERNEL_DIR=$KERNELDIR INSTALL_MOD_PATH=$CDDIR DESTDIR=$TMPDIR || exit 1 + copy_docs $TMPDIR copy_files $TMPDIR/usr $CDDIR || exit 1 rm -rf $TMPDIR || exit 1 fi |
From: Heiko Z. <smi...@us...> - 2010-02-28 13:54:47
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10487 Modified Files: CHANGES Log Message: corrected ipset install (Heiko + Gabriel Hojda) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1342 retrieving revision 1.1343 diff -u -d -r1.1342 -r1.1343 --- CHANGES 28 Feb 2010 10:06:41 -0000 1.1342 +++ CHANGES 28 Feb 2010 13:54:39 -0000 1.1343 @@ -22,6 +22,7 @@ # 1.4RC3 +- corrected ipset install (Heiko + Gabriel Hojda) - updated nfs-utils to 1.2.2 (sl) - updated nmap to 5.21 (sl) - updated ntp to 4.2.6 (sl) |
From: Serge L. <sma...@us...> - 2010-02-28 10:06:53
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31758/scripts Modified Files: nfs-utils ntp xtables-addons nmap Log Message: - updated nfs-utils to 1.2.2 - updated nmap to 5.21 - updated ntp to 4.2.6 - updated xtables-addons to 1.23 Index: nmap =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/nmap,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- nmap 6 Jan 2010 15:20:24 -0000 1.4 +++ nmap 28 Feb 2010 10:06:41 -0000 1.5 @@ -19,7 +19,7 @@ case $1 in build ) if [ "$CONFIG_NMAP" = "y" ]; then - ./configure --prefix=/usr --without-zenmap || exit 1 + ./configure --prefix=/usr --without-zenmap --disable-nls || exit 1 make $PMAKE all || exit 1 strip_debug fi Index: ntp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ntp,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- ntp 6 Jan 2010 15:20:24 -0000 1.25 +++ ntp 28 Feb 2010 10:06:41 -0000 1.26 @@ -20,7 +20,7 @@ build ) if [ "$CONFIG_NTP" = "y" ]; then if [ ! -f dl-patch.done ]; then -# bzcat $DL_DIR/src/ntpconfig-phone.patch.bz2 | patch -p0 || exit 1 + bzcat $DL_DIR/src/ntp*.patch.bz2 | patch -p1 || exit 1 touch dl-patch.done fi ./configure --prefix=/usr --enable-all-clocks --enable-parse-clocks || exit 1 Index: xtables-addons =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/xtables-addons,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- xtables-addons 23 Feb 2010 00:26:04 -0000 1.1 +++ xtables-addons 28 Feb 2010 10:06:41 -0000 1.2 @@ -17,10 +17,6 @@ case $1 in build ) if [ "$CONFIG_NF_PATCHES" = "y" ]; then - if [ ! -f devil-linux-patches.done ]; then - bzcat $DL_DIR/src/xtables-addons*.patch.bz2 | patch -d extensions/ipset -p1 || exit 1 - touch devil-linux-patches.done - fi ./configure --prefix=/usr --with-kbuild=$KERNELDIR || exit 1 make || exit 1 strip_debug Index: nfs-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/nfs-utils,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- nfs-utils 6 Jan 2010 15:20:24 -0000 1.8 +++ nfs-utils 28 Feb 2010 10:06:41 -0000 1.9 @@ -17,7 +17,7 @@ case $1 in build ) if [ "$CONFIG_NFSD" = "y" ]; then - ./configure --prefix=/usr --disable-gss || exit 1 + ./configure --prefix=/usr --disable-gss --without-tcp-wrappers || exit 1 make || exit 1 strip_debug fi |
From: Serge L. <sma...@us...> - 2010-02-28 10:06:52
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv31758 Modified Files: md5sum.lst CHANGES Log Message: - updated nfs-utils to 1.2.2 - updated nmap to 5.21 - updated ntp to 4.2.6 - updated xtables-addons to 1.23 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.554 retrieving revision 1.555 diff -u -d -r1.554 -r1.555 --- md5sum.lst 27 Feb 2010 18:33:44 -0000 1.554 +++ md5sum.lst 28 Feb 2010 10:06:41 -0000 1.555 @@ -201,7 +201,6 @@ fa021892240f49f6c8ca8c988eb915ee src/insserv-boot.diff.bz2 57035039daddd242ede848bdcde86ae5 src/insserv-core.diff.bz2 f9ed8a729145ae613b3cdc518f1750e3 src/ipac-ng-1.31.tar.bz2 -969832f3a42fc25b44045d73ea483f18 src/ipcalc.tar.bz2 e2401e65db26a3764585b97212888fae src/ippool-1.3.tar.gz 230f35282a95451622f3e8394f9cd80a src/iproute2-2.6.31.tar.bz2 821bd84e8d4ad5a93bf594b8b3d66e1e src/ipsec-tools-0.7.3.tar.bz2 @@ -334,16 +333,16 @@ c2bc56b61028bce36a5cc3fe7e81058e src/netacct-mysql-0.78.tar.gz 98dff8a3d5a31885b73341633f69501f src/netfilter-layer7-v2.22.tar.gz 7b816e0633ccbf29273ce5a3bab335cd src/netpbm-10.35.72.tgz -c3ccd16c147befd49fe4541a506dd177 src/nfs-utils-1.2.1.tar.bz2 -32d27de32166c02d670bb4a086185886 src/nmap-5.00.tar.bz2 +dad92f64db3266c7757f71bb53ee8f35 src/nfs-utils-1.2.2.tar.bz2 +f77fa51d89ab27d35e5cd87bb086b858 src/nmap-5.21.tar.bz2 c011fc1595dd125443df2d357958c85f src/noip_updater_linux_v1.4.tar.gz b2d75e2962f1e3151ef58794d60c9e97 src/nrpe-2.12.tar.gz 33a98e7975f633a9489d7a8938ed6131 src/nsca-2.7.2.tar.gz ef29690c6e5f02dffbfd0f32f296a97b src/nss_ldap.tgz cec5a7eb6afbd7b89a956f45a0264d62 src/ntop-3.3.9.tar.bz2 a2e8f6ef61ff037a718ad6b3f7453696 src/ntop-geoipdownload.patch.bz2 -fe137056e7e611798a46971a783567ce src/ntp-4.2.4p8.tar.gz -5cc5a621832a70e012462d2069149583 src/ntpconfig-phone.patch.bz2 +a9da9c36f1aecea2c15e1c8453e5b7ee src/ntp-4.2.6.patch.bz2 +4d64a99592b818aa9419fc9dcb149746 src/ntp-4.2.6.tar.gz 6f893b61b07915e7a139324fa3f79121 src/nut-2.4.3.tar.gz cf1c017496b066b45ffe3d7a303fd6ad src/oidentd-2.0.7.tar.gz bc51e60049b1f7ccc6b36a335c9d99c4 src/open-iscsi-destdir.patch.bz2 @@ -683,8 +682,7 @@ 41bac47fb49a98857f346bbc1c164872 src/xfsprogs-3.0.3.tar.gz 567382d7972613090215c6c54f9b82d9 src/xinetd-2.3.14.tar.gz ab6614c785f5b653fcc69fb9c02058f0 src/xmbmon205.tar.gz -0db0af708f87d74d1f556b04c9f6e2ca src/xtables-addons-1.22.patch.bz2 -990e2d84a1767c8247c92ae7b11e53a9 src/xtables-addons-1.22.tar.bz2 +c03b7dd1def08d5c3c69a96c607fda1b src/xtables-addons-1.23.tar.bz2 8a852581c831eb6e699a16d741a7ec52 src/yp-tools-2.9.tar.gz 390470ce9f41bd6929102972b9b8a1b7 src/yp_auth.patch.bz2 3a11b9f447c72fd6d18afe3b6f94b2c0 src/ypbind-mt-1.12.tar.bz2 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1341 retrieving revision 1.1342 diff -u -d -r1.1341 -r1.1342 --- CHANGES 27 Feb 2010 18:33:29 -0000 1.1341 +++ CHANGES 28 Feb 2010 10:06:41 -0000 1.1342 @@ -22,6 +22,10 @@ # 1.4RC3 +- updated nfs-utils to 1.2.2 (sl) +- updated nmap to 5.21 (sl) +- updated ntp to 4.2.6 (sl) +- updated xtables-addons to 1.23 (sl) - updated bacula to 5.0.1 - updated kernel IMQ patch with official version for 2.6.32 - updated diffutils to 2.9 |
From: Heiko Z. <smi...@us...> - 2010-02-27 18:33:58
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12192 Modified Files: CHANGES md5sum.lst Log Message: - updated bacula to 5.0.1 - reverted back to samba 3.4.6 (3.4.6 is buggy) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1340 retrieving revision 1.1341 diff -u -d -r1.1340 -r1.1341 --- CHANGES 26 Feb 2010 23:28:50 -0000 1.1340 +++ CHANGES 27 Feb 2010 18:33:29 -0000 1.1341 @@ -22,6 +22,7 @@ # 1.4RC3 +- updated bacula to 5.0.1 - updated kernel IMQ patch with official version for 2.6.32 - updated diffutils to 2.9 - updated fetchmail to 6.3.14 @@ -31,7 +32,6 @@ - updated nut to 2.4.3 - updated kernel to 2.6.32.9 - updated pax-linux to 2.6.32.9-test21 -- updated samba to 3.4.6 - updated snort to 2.8.5.3 - updated sudo to 1.7.2p4 - ipcalc was replaced by sipcalc (sl) Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.553 retrieving revision 1.554 diff -u -d -r1.553 -r1.554 --- md5sum.lst 26 Feb 2010 23:26:11 -0000 1.553 +++ md5sum.lst 27 Feb 2010 18:33:44 -0000 1.554 @@ -32,7 +32,7 @@ a6de1cc6434cd64038b0a0ae4e252b33 src/autoconf-2.65.tar.bz2 1498208ab1c8393dcbd9afb7d06df6d5 src/automake-1.10.2.tar.bz2 26a5b19fa9f395e9e7dafed37b795d7f src/awstats-6.95.tar.gz -68e008d2578a6d9a50af60439db17dcb src/bacula-5.0.0.tar.gz +beb9f8da196b3c9ffb0356f087dbdb99 src/bacula-5.0.1.tar.gz 73a0def16eb15e56c57491ac232abcf3 src/bash-3.2-arc4random-1.patch.bz2 338dcf975a93640bb3eaa843ca42e3f8 src/bash-3.2.48.tar.gz d541419fd7e5642952d7b48cbb40c712 src/beep-1.2.2.tar.gz @@ -582,7 +582,7 @@ 19b24f7184a8dbf7b48c1bbb565ad9fb src/rrdtool-1.2.30.tar.gz b53525900817cf1ba7ad3a516ab5bfe9 src/rsync-3.0.7.tar.gz d8be084c94a8b582547cd5d4b8d2e3ea src/sagator-1.2.0.tar.bz2 -1090ea7e85b0b915c7e3c427d6457e36 src/samba-3.4.6.tar.gz +8e8a484782f2b7716b6c6bd9a7d2bf71 src/samba-3.4.5.tar.gz 6e2e2c386a89aaff31f048eb2a6c5b1a src/sarg-2.2.3.1.tar.gz f1eb94c7588e878df806b63aa8348174 src/scponly-20080308.tgz 8506fd205028a96c741e4037de6e3c42 src/screen-4.0.3.tar.gz |
From: Heiko Z. <smi...@us...> - 2010-02-26 23:28:58
|
Update of /cvsroot/devil-linux/build In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15865 Modified Files: CHANGES Log Message: - updated kernel IMQ patch with official version for 2.6.32 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1339 retrieving revision 1.1340 diff -u -d -r1.1339 -r1.1340 --- CHANGES 26 Feb 2010 23:26:11 -0000 1.1339 +++ CHANGES 26 Feb 2010 23:28:50 -0000 1.1340 @@ -22,6 +22,7 @@ # 1.4RC3 +- updated kernel IMQ patch with official version for 2.6.32 - updated diffutils to 2.9 - updated fetchmail to 6.3.14 - added git 1.7.0 |
From: Heiko Z. <smi...@us...> - 2010-02-26 23:26:43
|
Update of /cvsroot/devil-linux/build/scripts In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15485/scripts Added Files: neon Log Message: - updated diffutils to 2.9 - updated fetchmail to 6.3.14 - added git 1.7.0 - updated grsecurity to 2.1.14-2.6.32.9-201002231820 - added neon 0.29.3 - updated nut to 2.4.3 - updated kernel to 2.6.32.9 - updated pax-linux to 2.6.32.9-test21 - updated samba to 3.4.6 - updated snort to 2.8.5.3 - updated sudo to 1.7.2p4 --- NEW FILE: neon --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/neon,v $ # $Revision: 1.1 $ # $Date: 2010/02/26 23:26:35 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) ./configure --prefix=/usr --localstatedir=/var --disable-nls --with-libxml2 \ --enable-shared --with-ssl=openssl || exit 1 make $PMAKE all || exit 1 strip_debug # install it in local system, because other programs could need it make install ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: Heiko Z. <smi...@us...> - 2010-02-26 23:26:22
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15278/scripts/configuration/profiles Modified Files: default server Log Message: - updated diffutils to 2.9 - updated fetchmail to 6.3.14 - added git 1.7.0 - updated grsecurity to 2.1.14-2.6.32.9-201002231820 - added neon 0.29.3 - updated nut to 2.4.3 - updated kernel to 2.6.32.9 - updated pax-linux to 2.6.32.9-test21 - updated samba to 3.4.6 - updated snort to 2.8.5.3 - updated sudo to 1.7.2p4 Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- default 29 Dec 2009 17:55:14 -0000 1.108 +++ default 26 Feb 2010 23:26:13 -0000 1.109 @@ -243,3 +243,4 @@ CONFIG_WEBMIN=y CONFIG_DKIM_MILTER=y CONFIG_SENDMAIL_LIBMILTER=y +CONFIG_GIT=y Index: server =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/server,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- server 29 Dec 2009 17:55:14 -0000 1.19 +++ server 26 Feb 2010 23:26:14 -0000 1.20 @@ -242,3 +242,4 @@ CONFIG_MAILSCANNER=y CONFIG_DKIM_MILTER=y CONFIG_SENDMAIL_LIBMILTER=y +CONFIG_GIT=y |
From: Heiko Z. <smi...@us...> - 2010-02-26 23:26:21
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv15278/scripts/configuration/help Added Files: git.help Log Message: - updated diffutils to 2.9 - updated fetchmail to 6.3.14 - added git 1.7.0 - updated grsecurity to 2.1.14-2.6.32.9-201002231820 - added neon 0.29.3 - updated nut to 2.4.3 - updated kernel to 2.6.32.9 - updated pax-linux to 2.6.32.9-test21 - updated samba to 3.4.6 - updated snort to 2.8.5.3 - updated sudo to 1.7.2p4 --- NEW FILE: git.help --- CONFIG_GIT Git is a free & open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency. |