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: Heiko Z. <smi...@us...> - 2007-12-19 16:42:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11986/scripts Modified Files: grsecurity settings Log Message: - code cleanup - kernel release string was not correctly evaluated Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.33 retrieving revision 1.34 diff -u -d -r1.33 -r1.34 --- grsecurity 16 Nov 2007 15:13:28 -0000 1.33 +++ grsecurity 19 Dec 2007 16:41:55 -0000 1.34 @@ -30,8 +30,7 @@ if [ "$CONFIG_GRSECURITY" = "y" ] ; then cd $KERNELDIR if [ ! -f devil-linux-grsec-kernel-patches.done ]; then - bzcat $DL_DIR/src/grsecurity-2.*$CONFIG_LINUX_VERSION*.patch.bz2 | sed -e 's/EXTRAVERSION = -as2/EXTRAVERSION = -as3/' -e 's/NAME=Woozy Numbat + fixes/NAME=Rocket/' | patch -p1 - bzcat $DL_DIR/src/grsecurity-2.*$CONFIG_LINUX_VERSION*.patch.bz2 | patch -p1 + bzcat $DL_DIR/src/grsecurity-2.*$CONFIG_LINUX_VERSION*.patch.bz2 | patch -p1 || exit 1 touch devil-linux-grsec-kernel-patches.done fi # add configuration to kernel config Index: settings =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/settings,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- settings 1 May 2007 00:30:31 -0000 1.54 +++ settings 19 Dec 2007 16:41:55 -0000 1.55 @@ -49,7 +49,7 @@ CONF_HOST="i$CONFIG_CPU-pc-linux-gnu" KERNELDIR=$(find_src_dir linux-$CONFIG_LINUX_VERSION) -KERNELVERSION=$(make -s -C $KERNELDIR kernelversion 2> /dev/null | grep -vi "directory") +KERNELVERSION=$(make -s -C $KERNELDIR kernelrelease 2> /dev/null | grep -vi "directory") SRCDIR=$DL_DIR/src SRCEXTRADIR=$DL_DIR/src-extra |
|
From: Serge L. <sma...@us...> - 2007-12-18 07:06:03
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv14484 Modified Files: md5sum.lst CHANGES Log Message: - updated squid to 2.6.STABLE17 - updated bind to 9.4.2 - updated kernel to 2.6.23.11 - modified scripts/prepare to apply minor kernel version patch Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.394 retrieving revision 1.395 diff -u -d -r1.394 -r1.395 --- md5sum.lst 29 Nov 2007 13:25:29 -0000 1.394 +++ md5sum.lst 18 Dec 2007 07:05:55 -0000 1.395 @@ -111,7 +111,7 @@ 3e6da58e0c479ae0de49ae3e6948576e src/awstats-6.6.tar.gz 00bfa16d58e034e3c2aa27f390390d30 src/bash-3.2.tar.gz d541419fd7e5642952d7b48cbb40c712 src/beep-1.2.2.tar.gz -44e0514e6105ddaa235394045d9aeb0c src/bind-9.4.1-P1.tar.gz +57953d7264139b9506b9d66174125179 src/bind-9.4.2.tar.gz e26e2e06b6e4bf3acf1dc8688a94c0d1 src/binutils-2.17.tar.bz2 152997864cd8095e46f61c81f6320645 src/binutils-patches.tar.bz2 22327efdd5080e2b1acb6e560a04b43a src/bison-2.3.tar.gz @@ -320,7 +320,7 @@ caf182cbc7565dac0fd72155919672e6 src/libusb-0.1.12.tar.gz f5806f5059ef7bd4d3fcf36cf116d1ef src/libxml2-2.6.27.tar.gz f2061dddea77257488601e20e2f3b5a7 src/libxslt-1.1.22.tar.bz2 -2a8895d7e91f4ab7b3c582d8840fe685 src/linux-2.6.23.8.tar.bz2 +2cc2fd4d521dc5d7cfce0d8a9d1b3472 src/linux-2.6.23.tar.bz2 d793c9a024b46163e5a8938a4058c3a6 src/linux-2.6.23-mppe-mppc-1.3.patch.bz2 0f14f8c52bf160fd459daa6a5557d2dc src/linux-wlan-ng-svn-20071026.tar.bz2 4074f4a3863275e86bc192f66fd76854 src/linux-wlan-ng.etc-shared.patch.bz2 @@ -402,6 +402,7 @@ 9f7eb69999746a40789dad5ea5af993c src/pam_radius-1.3.16.tar.bz2 40dd0853d0c1c2cc019d6e2e8146555a src/passwdgen-1.diff.bz2 097cf193d1b040cf0d135945714faa83 src/passwdgen-2.2.tar.gz +31b2f8675e2c913d1f217c25e0c72daf src/patch-2.6.23.11.bz2 f785f9c40c82571de03b79c276efaf06 src/patch-o-matic-ng-20071022.tar.bz2 38744661462cbce509b6f3e0e54ebbfd src/pax-linux-2.6.23-test13.patch.bz2 149bcb2508e9bfb092954c294b97f876 src/pci.ids.bz2 @@ -469,7 +470,7 @@ 91a572f80dd5a9af5a0f7f207fd34478 src/siproxd-0.5.13.tar.gz fc2cb32e926b25afa24f450f9a48fbb1 src/smartmontools-5.26.tar.gz 8b46997afd728fbdaafdc9b1d0278b07 src/snort-2.6.1.3.tar.gz -95997d6cb38fdb562ecb790c553f9cfc src/squid-2.6.STABLE9.tar.bz2 +e6face0dff4ea054d3ba94236eb56ea1 src/squid-2.6.STABLE17.tar.bz2 b6700f59c48fde5ad4d12f871acba93a src/squidGuard-1.2.1.tar.gz 617b83cda02eee31562c467ac7289580 src/squidguard-blacklist.tar.bz2 77f66d09aa82981bb6d65fa19a2c1ba9 src/strace-4.5.16.tar.bz2 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1157 retrieving revision 1.1158 diff -u -d -r1.1157 -r1.1158 --- CHANGES 15 Dec 2007 16:10:26 -0000 1.1157 +++ CHANGES 18 Dec 2007 07:05:55 -0000 1.1158 @@ -22,6 +22,9 @@ # 1.3.4 +- updated kernel to 2.6.23.11 (sl) +- updated squid to 2.6.STABLE17 (sl) +- updated bind to 9.4.2 (sl) - added missing LSI fusion scsi drivers to initial ramdisk - added mppe-mppc patch for pptp (disabled in the default profile) (sl) - updated php to 5.2.5 (BS) |
|
From: Serge L. <sma...@us...> - 2007-12-18 07:06:03
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv14484/scripts Modified Files: prepare Log Message: - updated squid to 2.6.STABLE17 - updated bind to 9.4.2 - updated kernel to 2.6.23.11 - modified scripts/prepare to apply minor kernel version patch Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.69 retrieving revision 1.70 diff -u -d -r1.69 -r1.70 --- prepare 22 Oct 2007 14:08:51 -0000 1.69 +++ prepare 18 Dec 2007 07:05:55 -0000 1.70 @@ -40,6 +40,18 @@ exit 1 fi +# We are applying minor version kernel patch here + pushd $KERNELDIR > /dev/null + if [ ! -f .minor_version_patch.done ]; then + shopt -s extglob + for i in $(ls ../../src/patch-$KERNELVERSION.+([[:digit:]]).bz2) + do + bzcat $i | patch -p1 || exit 1 + done + touch .minor_version_patch.done + popd > /dev/null + fi + # let's find out if we force the usage of old kernel include files # this is sometimes necessary, when they change too much in the new kernel KERN_INC=$(find_src_dir kernel-includes) |
|
From: Heiko Z. <smi...@us...> - 2007-12-15 16:11:38
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4653/scripts Modified Files: Tag: rel-1-2-patches linux Log Message: - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) Index: linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux,v retrieving revision 1.54.2.2 retrieving revision 1.54.2.3 diff -u -d -r1.54.2.2 -r1.54.2.3 --- linux 19 Aug 2007 14:02:50 -0000 1.54.2.2 +++ linux 15 Dec 2007 16:11:33 -0000 1.54.2.3 @@ -51,6 +51,7 @@ mkdir -p $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers || exit 1 cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/scsi $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/block $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 + cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/message $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 cp -dp $CDDIR/lib/modules/$KERNELVERSION/modules.dep $INITRDDIR/lib/modules/$KERNELVERSION/ || exit 1 ;; |
|
From: Heiko Z. <smi...@us...> - 2007-12-15 16:11:37
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4653 Modified Files: Tag: rel-1-2-patches CHANGES Log Message: - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.343 retrieving revision 1.807.2.344 diff -u -d -r1.807.2.343 -r1.807.2.344 --- CHANGES 28 Nov 2007 13:26:01 -0000 1.807.2.343 +++ CHANGES 15 Dec 2007 16:11:33 -0000 1.807.2.344 @@ -22,6 +22,7 @@ # 1.2.15 +- added missing LSI fusion scsi drivers to initial ramdisk - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) 1.2.14 |
|
From: Heiko Z. <smi...@us...> - 2007-12-15 16:10:32
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4239 Modified Files: CHANGES Log Message: - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1156 retrieving revision 1.1157 diff -u -d -r1.1156 -r1.1157 --- CHANGES 29 Nov 2007 13:25:29 -0000 1.1156 +++ CHANGES 15 Dec 2007 16:10:26 -0000 1.1157 @@ -22,6 +22,7 @@ # 1.3.4 +- added missing LSI fusion scsi drivers to initial ramdisk - added mppe-mppc patch for pptp (disabled in the default profile) (sl) - updated php to 5.2.5 (BS) - updated libnetfilter_conntrack to 0.0.82 (BS) |
|
From: Heiko Z. <smi...@us...> - 2007-12-15 16:10:32
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4239/scripts Modified Files: linux Log Message: - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) Index: linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux,v retrieving revision 1.63 retrieving revision 1.64 diff -u -d -r1.63 -r1.64 --- linux 1 Nov 2007 16:21:15 -0000 1.63 +++ linux 15 Dec 2007 16:10:26 -0000 1.64 @@ -54,6 +54,7 @@ cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/scsi $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ata $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/block $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 + cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/message $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 cp -dp $CDDIR/lib/modules/$KERNELVERSION/modules.dep $INITRDDIR/lib/modules/$KERNELVERSION/ || exit 1 ;; |
|
From: Heiko Z. <smi...@us...> - 2007-11-30 14:40:29
|
Update of /cvsroot/devil-linux/web/sitetools In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv7008 Modified Files: sponsors.php Log Message: one more Index: sponsors.php =================================================================== RCS file: /cvsroot/devil-linux/web/sitetools/sponsors.php,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- sponsors.php 29 Nov 2007 01:57:12 -0000 1.46 +++ sponsors.php 30 Nov 2007 14:40:24 -0000 1.47 @@ -9,6 +9,10 @@ <td class="boxheading" align=center>Donation</td> </tr> <tr> + <td><a href="http://www.conferencecallsunlimited.com" target="_blank">Conference Calls Unlimited, Inc.</a></td> + <td align="right">$50</td> +</tr> +<tr> <td>Dale Warnecke</td> <td align="right">$50</td> </tr> |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:28:00
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv28538/scripts/configuration/profiles Modified Files: default Log Message: - typo fixed Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- default 29 Nov 2007 13:25:29 -0000 1.73 +++ default 29 Nov 2007 13:27:55 -0000 1.74 @@ -147,7 +147,7 @@ CONFIG_PHP=y CONFIG_PMAKE=1 CONFIG_POPTOP=y -CONFIG_POPTOP_MPPE-MPPC=n +CONFIG_POPTOP_MPPE_MPPC=n CONFIG_PORTMAP=y CONFIG_PORTSLAVE=n CONFIG_POSTFIX=y |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:25:41
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27437/scripts/configuration Added Files: pptp_mppe_mppc_patch Log Message: - added optional mppe-mppc patch for pptp --- NEW FILE: pptp_mppe_mppc_patch --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/pptp_mppe_mppc_patch,v $ # $Revision: 1.1 $ # $Date: 2007/11/29 13:25:29 $ # # http://www.devil-linux.org if [ "$CONFIG_POPTOP" = "y" ] || [ "$CONFIG_PPTP_CLIENT" = "y" ]; then menu_add "Networking|VPN" bool "MPPE-MPPC Patch for PPTP Server/Client" CONFIG_POPTOP_MPPE_MPPC fi |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:25:38
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27437/scripts Modified Files: pptp-patches Log Message: - added optional mppe-mppc patch for pptp Index: pptp-patches =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/pptp-patches,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- pptp-patches 23 Oct 2007 18:06:29 -0000 1.21 +++ pptp-patches 29 Nov 2007 13:25:29 -0000 1.22 @@ -27,10 +27,14 @@ build ) if [ "$CONFIG_PPP" = "y" ]; then if [ "$CONFIG_POPTOP" = "y" ] || [ "$CONFIG_PPTP_CLIENT" = "y" ]; then - - pushd $KERNELDIR || exit 1 - #bzcat $SRCDIR/linux-2.6.*-mppe-mppc-*.patch.bz2 | patch -p1 || exit 1 - #echo "CONFIG_PPP_MPPE_MPPC=m" >> $KERNELDIR/.config || exit 1 + if [ "$CONFIG_POPTOP_MPPE_MPPC" = "y" ]; then + if [ ! -f devil-linux-mppe_mppc-patch.done ]; then + pushd $KERNELDIR || exit 1 + bzcat $SRCDIR/linux-2.6.*-mppe-mppc-*.patch.bz2 | patch -p1 || exit 1 + echo "CONFIG_PPP_MPPE_MPPC=m" >> $KERNELDIR/.config || exit 1 + touch devil-linux-mppe_mppc-patch.done + fi + fi fi fi ;; |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:25:38
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27437/scripts/configuration/profiles Modified Files: default Log Message: - added optional mppe-mppc patch for pptp Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- default 27 Nov 2007 20:58:09 -0000 1.72 +++ default 29 Nov 2007 13:25:29 -0000 1.73 @@ -147,6 +147,7 @@ CONFIG_PHP=y CONFIG_PMAKE=1 CONFIG_POPTOP=y +CONFIG_POPTOP_MPPE-MPPC=n CONFIG_PORTMAP=y CONFIG_PORTSLAVE=n CONFIG_POSTFIX=y |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:25:38
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27437/scripts/configuration/help Added Files: pptp_mppe_mppc_patch.help Log Message: - added optional mppe-mppc patch for pptp --- NEW FILE: pptp_mppe_mppc_patch.help --- CONFIG_POPTOP_MPPE_MPPC MPPE stands for Microsoft Point-to-Point Encryption. It is a protocol designed for transfering encrypted datagrams over point-to-point links. See RFC3078 and RFC3079 for details. MPPE comes in Linux kernel by default. MPPC stands for Microsoft Point-to-Point Compression. It is a protocol designed for transfering compressed datagrams over point-to-point links. The MPPC algorithm uses an LZ based algorithm with a sliding window history buffer. See RFC2118 for details. Although the module's source code is completely free, MPPC itself is patented algorithm. Patent for *Microsoft* PPC is holded by the Hifn Inc. This is obvious ;-). Furthermore, MPPE uses RC4[1] encryption algorithm which itself isn't patented, but RC4 is trademark of RSA Data Security Inc. To avoid legal problems, US citizens shouldn't use this module. http://mppe-mppc.alphacron.de/ |
|
From: Serge L. <sma...@us...> - 2007-11-29 13:25:35
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27437 Modified Files: CHANGES md5sum.lst Log Message: - added optional mppe-mppc patch for pptp Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1155 retrieving revision 1.1156 diff -u -d -r1.1155 -r1.1156 --- CHANGES 27 Nov 2007 21:05:29 -0000 1.1155 +++ CHANGES 29 Nov 2007 13:25:29 -0000 1.1156 @@ -22,6 +22,7 @@ # 1.3.4 +- added mppe-mppc patch for pptp (disabled in the default profile) (sl) - updated php to 5.2.5 (BS) - updated libnetfilter_conntrack to 0.0.82 (BS) - added inotify-tools Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.393 retrieving revision 1.394 diff -u -d -r1.393 -r1.394 --- md5sum.lst 27 Nov 2007 21:03:28 -0000 1.393 +++ md5sum.lst 29 Nov 2007 13:25:29 -0000 1.394 @@ -321,6 +321,7 @@ f5806f5059ef7bd4d3fcf36cf116d1ef src/libxml2-2.6.27.tar.gz f2061dddea77257488601e20e2f3b5a7 src/libxslt-1.1.22.tar.bz2 2a8895d7e91f4ab7b3c582d8840fe685 src/linux-2.6.23.8.tar.bz2 +d793c9a024b46163e5a8938a4058c3a6 src/linux-2.6.23-mppe-mppc-1.3.patch.bz2 0f14f8c52bf160fd459daa6a5557d2dc src/linux-wlan-ng-svn-20071026.tar.bz2 4074f4a3863275e86bc192f66fd76854 src/linux-wlan-ng.etc-shared.patch.bz2 77f96bc8a7773e95b2990d756e4925d6 src/lm_sensors-2.10.5.tar.gz |
|
From: Heiko Z. <smi...@us...> - 2007-11-29 01:57:18
|
Update of /cvsroot/devil-linux/web/sitetools In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11030/sitetools Modified Files: sponsors.php Log Message: year end is nice Index: sponsors.php =================================================================== RCS file: /cvsroot/devil-linux/web/sitetools/sponsors.php,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- sponsors.php 24 Nov 2007 21:27:35 -0000 1.45 +++ sponsors.php 29 Nov 2007 01:57:12 -0000 1.46 @@ -9,6 +9,10 @@ <td class="boxheading" align=center>Donation</td> </tr> <tr> + <td>Dale Warnecke</td> + <td align="right">$50</td> +</tr> +<tr> <td><a href="http://www.cdtechnical.com" target="_blank">CD Technical - CD DVD Duplication</a></td> <td align="right">$50</td> </tr> |
|
From: Heiko Z. <smi...@us...> - 2007-11-28 13:26:14
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv24451 Modified Files: Tag: rel-1-2-patches CHANGES md5sum.lst Log Message: - downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.342 retrieving revision 1.807.2.343 diff -u -d -r1.807.2.342 -r1.807.2.343 --- CHANGES 27 Nov 2007 17:26:27 -0000 1.807.2.342 +++ CHANGES 28 Nov 2007 13:26:01 -0000 1.807.2.343 @@ -22,6 +22,7 @@ # 1.2.15 +- downgraded iptables to 1.3.7 (due to missing extensions, i.e. connlimit, time and others) 1.2.14 - updated netpbm to 10.26.46 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.102.2.228 retrieving revision 1.102.2.229 diff -u -d -r1.102.2.228 -r1.102.2.229 --- md5sum.lst 19 Nov 2007 14:05:17 -0000 1.102.2.228 +++ md5sum.lst 28 Nov 2007 13:26:02 -0000 1.102.2.229 @@ -249,7 +249,7 @@ f31d4516b35bbfeaa72c762f5959e97c src/iproute2-2.6.16-060323.tar.gz 4fb764f282dc21cf9a656c58e13dacbb src/ipsec-tools-0.6.7.tar.bz2 a638af2788ce9e41e07dbe89311c0914 src/ipset-2.2.8-20051203.tar.bz2 -0a9209f928002e5eee9cdff8fef4d4b3 src/iptables-1.3.8.tar.bz2 +dd965bdacbb86ce2a6498829fddda6b7 src/iptables-1.3.7.tar.bz2 377371c28ee3c21a76f7024920649ea8 src/iptraf-3.0.0.tar.gz 794b17e087398ec3056ffee57b00106c src/iptraf-include-fix.diff.bz2 c7a487ef026bb883f04c3ffa631ee20c src/iptraf-netdevice-fix.diff.bz2 |
|
From: Bruce S. <bl...@us...> - 2007-11-27 21:05:33
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv22661 Modified Files: CHANGES Log Message: Can't type ... Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1154 retrieving revision 1.1155 diff -u -d -r1.1154 -r1.1155 --- CHANGES 27 Nov 2007 21:03:28 -0000 1.1154 +++ CHANGES 27 Nov 2007 21:05:29 -0000 1.1155 @@ -23,7 +23,7 @@ 1.3.4 - updated php to 5.2.5 (BS) -- update libnetfilter_conntrack to 0.0.82 (BS) +- updated libnetfilter_conntrack to 0.0.82 (BS) - added inotify-tools - added openl2tp - updated e1000 to 7.6.9.2 |
|
From: Bruce S. <bl...@us...> - 2007-11-27 21:03:34
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv21943 Modified Files: md5sum.lst CHANGES Log Message: Updates Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.392 retrieving revision 1.393 diff -u -d -r1.392 -r1.393 --- md5sum.lst 25 Nov 2007 19:09:30 -0000 1.392 +++ md5sum.lst 27 Nov 2007 21:03:28 -0000 1.393 @@ -304,7 +304,7 @@ be845c41170d72c7db524f3411b50256 src/libnet-1.1.2.1.tar.gz 540ff915e5ac52ec0c00af1384abab40 src/libnet-endianess-fix.diff.bz2 629379482a9e5fa4972c2a8dd611251f src/libnet-shared.diff.bz2 -806f8d3a29f019c6b9134a5d9678ea06 src/libnetfilter_conntrack-0.0.81.tar.bz2 +b3f6bc03a362baef942680572300c3bf src/libnetfilter_conntrack-0.0.82.tar.bz2 7fd3c8ddc03d42fa9f0177a17a38f163 src/libnfnetlink-0.0.30.tar.bz2 9233cb77876eb642374a0d2bcaba1170 src/libnfsidmap-0.20.tar.gz 1f29be3f4bcddb5b2f3d965e78f04006 src/libol-0.3.16.tar.gz @@ -409,7 +409,7 @@ 08b48bf97ff84a9dea07d6be518f0046 src/pcre-7.3.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz a377c0c67ab43fd96eeec29ce19e8382 src/perl-5.8.8.tar.bz2 -55c97a671fdabf462cc7a82971a656d2 src/php-5.2.4.tar.bz2 +1fe14ca892460b09f06729941a1bb605 src/php-5.2.5.tar.bz2 a7e4f60a6657dbc434334deb594cc242 src/pkgconfig-0.15.0.tar.gz 5988e7aeb0ae4dac8d83561265984cc9 src/popt-1.7.tar.gz 082c55e473581d2ff887c6e0912b6554 src/portmap_5-1.diff.gz Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1153 retrieving revision 1.1154 diff -u -d -r1.1153 -r1.1154 --- CHANGES 27 Nov 2007 20:58:09 -0000 1.1153 +++ CHANGES 27 Nov 2007 21:03:28 -0000 1.1154 @@ -22,6 +22,8 @@ # 1.3.4 +- updated php to 5.2.5 (BS) +- update libnetfilter_conntrack to 0.0.82 (BS) - added inotify-tools - added openl2tp - updated e1000 to 7.6.9.2 |
|
From: Serge L. <sma...@us...> - 2007-11-27 20:58:20
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19654/scripts/configuration/help Added Files: inotify-tools.help Log Message: - added inotify-tools --- NEW FILE: inotify-tools.help --- CONFIG_INOTIFYTOOLS inotify-tools is a C library and a set of command-line programs for Linux providing a simple interface to inotify. These programs can be used to monitor and act upon filesystem events. http://inotify-tools.sourceforge.net |
|
From: Serge L. <sma...@us...> - 2007-11-27 20:58:18
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19654/scripts/configuration Added Files: inotify-tools.config Log Message: - added inotify-tools --- NEW FILE: inotify-tools.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/inotify-tools.config,v $ # $Revision: 1.1 $ # $Date: 2007/11/27 20:58:09 $ # # http://www.devil-linux.org menu_add "Tools|Utilities" bool "Inotify-tools" CONFIG_INOTIFYTOOLS |
|
From: Serge L. <sma...@us...> - 2007-11-27 20:58:18
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19654/scripts Added Files: inotify-tools Log Message: - added inotify-tools --- NEW FILE: inotify-tools --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/inotify-tools,v $ # $Revision: 1.1 $ # $Date: 2007/11/27 20:58:08 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: inotify-tools # 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 case $1 in build ) if [ "$CONFIG_INOTIFYTOOLS" = "y" ]; then ./configure --prefix=/usr || exit 1 make $PMAKE || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_INOTIFYTOOLS" = "y" ]; then rm -rf $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR rm -rf $TMPDIR/usr/include || exit 1 rm -rf $TMPDIR/usr/lib/*a || exit 1 cp -vdpR $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 |
|
From: Serge L. <sma...@us...> - 2007-11-27 20:58:15
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19654/scripts/configuration/profiles Modified Files: default Log Message: - added inotify-tools Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- default 23 Oct 2007 07:34:04 -0000 1.71 +++ default 27 Nov 2007 20:58:09 -0000 1.72 @@ -64,6 +64,7 @@ CONFIG_ID3V2=y CONFIG_IMAGEMAGICK=y CONFIG_INITRD_FS=EXT2 +CONFIG_INOTIFYTOOLS=y CONFIG_IPAC_NG=y CONFIG_IPROUTE2=y CONFIG_IPSEC_TOOLS=y @@ -74,7 +75,7 @@ CONFIG_JOE=y CONFIG_KERBEROS5=y CONFIG_KERNEL_CPU=586 -CONFIG_L2TPD=n +CONFIG_L2TPD=y CONFIG_LCD4LINUX=y CONFIG_LFTP=y CONFIG_LHA=y @@ -219,4 +220,4 @@ CONFIG_ZISOFS=y CONFIG_GCC_HARDENED=y CONFIG_STRONGSWAN=y -CONFIG_RNGTOOLS=y \ No newline at end of file +CONFIG_RNGTOOLS=y |
|
From: Serge L. <sma...@us...> - 2007-11-27 20:58:15
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv19654 Modified Files: CHANGES Log Message: - added inotify-tools Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1152 retrieving revision 1.1153 diff -u -d -r1.1152 -r1.1153 --- CHANGES 25 Nov 2007 19:09:30 -0000 1.1152 +++ CHANGES 27 Nov 2007 20:58:09 -0000 1.1153 @@ -22,6 +22,7 @@ # 1.3.4 +- added inotify-tools - added openl2tp - updated e1000 to 7.6.9.2 - updated unionfs to 2.1.9 |
|
From: Serge L. <sma...@us...> - 2007-11-27 18:47:43
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4247 Modified Files: openl2tp Log Message: - copy-paste fixed Index: openl2tp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/openl2tp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- openl2tp 25 Nov 2007 19:09:30 -0000 1.1 +++ openl2tp 27 Nov 2007 18:47:36 -0000 1.2 @@ -50,7 +50,7 @@ copy_files etc/sysconfig/* $ETCDIR/etc/sysconfig/ || exit 1 # Copy our own startup script into /etc/init.d - cp $MYDIR/scripts/l2tpd $ETCDIR/etc/init.d || exit 1 + cp $MYDIR/scripts/openl2tpd $ETCDIR/etc/init.d || exit 1 # Create the l2tp option in the config file echo "# Start $MYNAME?" >> $CONFIGFILE |
|
From: Heiko Z. <smi...@us...> - 2007-11-27 17:26:31
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv8846/scripts/config Modified Files: Tag: rel-1-2-patches VERSION Log Message: changed version number Index: VERSION =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/VERSION,v retrieving revision 1.14.2.19 retrieving revision 1.14.2.20 diff -u -d -r1.14.2.19 -r1.14.2.20 --- VERSION 4 Mar 2007 18:13:00 -0000 1.14.2.19 +++ VERSION 27 Nov 2007 17:26:28 -0000 1.14.2.20 @@ -1 +1 @@ -1.2.14 +1.2.15 |