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-21 15:08:49
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv29545 Modified Files: CHANGES Log Message: a few updates ensure that all module directories exist Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.661 retrieving revision 1.662 diff -u -d -r1.661 -r1.662 --- CHANGES 20 Jan 2004 01:59:45 -0000 1.661 +++ CHANGES 21 Jan 2004 15:08:46 -0000 1.662 @@ -22,6 +22,13 @@ # 1.1.2 +NO - updated lm_sensors to v2.8.3 +NO - updated i2c to v2.8.3 +- updated ddt to v0.5.9 +- updated patch-o-matic to v20040110 +- updated gd to v2.0.21 +- updated autoconf to v2.59 +- updated spamassassin to v2.62 - added gnupg binary to initrd - added libgpg-error v0.6 - updated libgcrypt to v1.1.91 |
From: <smi...@us...> - 2004-01-20 01:59:51
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv1536/scripts Modified Files: build.sh gnupg libgcrypt Added Files: libgpg-error Log Message: - added gnupg binary to initrd - added libgpg-error v0.6 - updated libgcrypt to v1.1.91 - updated gnupg to v1.2.4 --- NEW FILE: libgpg-error --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/libgpg-error,v $ # $Revision: 1.1 $ # $Date: 2004/01/20 01:59:45 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: libgpg-error # Required-Start: $basebuildtools glibc # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) ./configure --prefix=/usr --disable-nls || exit 1 make $PMAKE all || exit 1 strip_debug # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- build.sh 19 Jan 2004 23:22:57 -0000 1.73 +++ build.sh 20 Jan 2004 01:59:45 -0000 1.74 @@ -259,7 +259,7 @@ for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) do # reload settings - source settings + source $DL_DIR/scripts/settings # fake uname to display another platform we want to compile the kernel for # also make sure our kernel version is displayed Index: gnupg =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gnupg,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- gnupg 11 Jan 2004 14:43:04 -0000 1.11 +++ gnupg 20 Jan 2004 01:59:45 -0000 1.12 @@ -28,7 +28,16 @@ case $1 in build ) - ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 || exit 1 + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 \ + --without-libiconv-prefix --without-libintl-prefix --with-bzip2 --with-zlib \ + --disable-dynload --disable-exec --disable-photo-viewers --disable-keyserver-helpers --disable-ldap \ + --disable-rpath LDFLAGS=-static || exit 1 + make $PMAKE all || exit 1 + strip_debug + cp g10/gpg gpg-static || exit 1 + + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 \ + --without-libiconv-prefix --without-libintl-prefix --with-bzip2 --with-zlib || exit 1 make $PMAKE all || exit 1 strip_debug @@ -48,7 +57,7 @@ rm -rf $WORKDIR/tmp/usr/share || exit 1 copy_docs $WORKDIR/tmp copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 - #cp $WORKDIR/tmp/usr/bin/gpg $INITRDDIR/bin || exit 1 + cp gpg-static $INITRDDIR/bin/gpg || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; Index: libgcrypt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libgcrypt,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- libgcrypt 11 Jan 2004 14:43:04 -0000 1.6 +++ libgcrypt 20 Jan 2004 01:59:45 -0000 1.7 @@ -10,7 +10,7 @@ ### BEGIN INIT INFO # Provides: libgcrypt -# Required-Start: $basebuildtools glibc +# Required-Start: $basebuildtools glibc libgpg-error # Required-Stop: # Default-Start: 1 # Default-Stop: |
From: <smi...@us...> - 2004-01-20 01:59:48
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv1536 Modified Files: CHANGES Log Message: - added gnupg binary to initrd - added libgpg-error v0.6 - updated libgcrypt to v1.1.91 - updated gnupg to v1.2.4 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.660 retrieving revision 1.661 diff -u -d -r1.660 -r1.661 --- CHANGES 19 Jan 2004 23:40:31 -0000 1.660 +++ CHANGES 20 Jan 2004 01:59:45 -0000 1.661 @@ -22,6 +22,10 @@ # 1.1.2 +- added gnupg binary to initrd +- added libgpg-error v0.6 +- updated libgcrypt to v1.1.91 +- updated gnupg to v1.2.4 - added new (working) options.pptp (Heiko + Michiel Peene) - updated automake to v1.8.2 - updated tcpdump to v3.8.1 |
From: <smi...@us...> - 2004-01-20 00:33:36
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv19036/scripts Modified Files: Tag: rel-1-0-patches glibc Log Message: comparison needed backslash Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.18.2.2 retrieving revision 1.18.2.3 diff -u -d -r1.18.2.2 -r1.18.2.3 --- glibc 14 Jan 2004 22:57:10 -0000 1.18.2.2 +++ glibc 20 Jan 2004 00:33:30 -0000 1.18.2.3 @@ -24,7 +24,7 @@ cd ../glibc-build || exit 1 KVER_RUN=$(cat //proc/sys/kernel/osrelease) - if [ "$KERNELVERSION" > "$KVER_RUN" ]; then + if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then KVER=$KVER_RUN else KVER=$KERNELVERSION |
From: <smi...@us...> - 2004-01-20 00:31:31
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv18660/scripts Modified Files: glibc Log Message: "greather then" needed to be escaped Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- glibc 16 Jan 2004 01:47:55 -0000 1.29 +++ glibc 20 Jan 2004 00:31:28 -0000 1.30 @@ -52,7 +52,7 @@ # unfortunately we can only go as high as the host kernel version KVER_RUN=$(cat /proc/sys/kernel/osrelease) - if [ "$KERNELVERSION" > "$KVER_RUN" ]; then + if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then KVER=$KVER_RUN else KVER=$KERNELVERSION |
From: <smi...@us...> - 2004-01-19 23:40:35
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7350/scripts/scripts Added Files: options.pptp Log Message: added new (working) options.pptp --- NEW FILE: options.pptp --- lock proxyarp auth -chap +mschap-v2 ipcp-accept-local ipcp-accept-remote lcp-echo-failure 3 lcp-echo-interval 5 deflate 0 #mppe-128unrecognized option! #mppe-40unrecognized option! #mppe-statelessunrecognized option! Use require-mppe in stead! require-mschap-v2 require-mppe # Putting 2 ms-dns lines here, gives me 2 DNS servers on the IP config! ms-dns <ip dns1> ms-dns <ip dns2> |
From: <smi...@us...> - 2004-01-19 23:40:35
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7350/scripts Modified Files: poptop Log Message: added new (working) options.pptp Index: poptop =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/poptop,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- poptop 11 Jan 2004 14:43:05 -0000 1.2 +++ poptop 19 Jan 2004 23:40:32 -0000 1.3 @@ -44,7 +44,7 @@ cp -dp ./html/* $DOCDIR/pptpd copy_files $WORKDIR/tmp/usr $CDDIR || exit 1 cp -p ./samples/pptpd.conf $ETCDIR/etc || exit 1 - cp -p ./samples/options $ETCDIR/etc/ppp/options.pptp || exit 1 + cp -p $MYDIR/scripts/options.pptp $ETCDIR/etc/ppp/options.pptp || exit 1 cp $MYDIR/scripts/pptpd $ETCDIR/etc/init.d/ rm -rf $WORKDIR/tmp || exit 1 |
From: <smi...@us...> - 2004-01-19 23:40:35
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7350 Modified Files: CHANGES Log Message: added new (working) options.pptp Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.659 retrieving revision 1.660 diff -u -d -r1.659 -r1.660 --- CHANGES 17 Jan 2004 03:02:45 -0000 1.659 +++ CHANGES 19 Jan 2004 23:40:31 -0000 1.660 @@ -22,6 +22,7 @@ # 1.1.2 +- added new (working) options.pptp (Heiko + Michiel Peene) - updated automake to v1.8.2 - updated tcpdump to v3.8.1 - updated libpcap to v0.8.1 |
From: <smi...@us...> - 2004-01-19 23:23:00
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2979/scripts Modified Files: build.sh Log Message: uname was created in the wrong place Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.72 retrieving revision 1.73 diff -u -d -r1.72 -r1.73 --- build.sh 17 Jan 2004 21:37:40 -0000 1.72 +++ build.sh 19 Jan 2004 23:22:57 -0000 1.73 @@ -254,21 +254,21 @@ export PATH=/usr/lib/distcc/bin:$PATH fi - # reload settings - source settings - - # fake uname to display another platform we want to compile the kernel for - # also make sure our kernel version is displayed - test -f /bin/uname.old || cp /bin/uname /bin/uname.old || exit 1 - rm /bin/uname || exit 1 - REALKERNEL=$(/bin/uname.old -r) - echo "uname.old \$* | sed -e 's/i.86/i$CONFIG_CPU/' | sed -e 's/$REALKERNEL/$KERNELVERSION/'" > /bin/uname || exit 1 - chmod +x /bin/uname || exit 1 - mkdir -p $WORKDIR/LOGS/$CMD || exit 1 for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) do + # reload settings + source settings + + # fake uname to display another platform we want to compile the kernel for + # also make sure our kernel version is displayed + test -f /bin/uname.old || cp /bin/uname /bin/uname.old || exit 1 + rm /bin/uname || exit 1 + REALKERNEL=$(/bin/uname.old -r) + echo "uname.old \$* | sed -e 's/i.86/i$CONFIG_CPU/' | sed -e 's/$REALKERNEL/$KERNELVERSION/'" > /bin/uname || exit 1 + chmod +x /bin/uname || exit 1 + LINK=${LINK##/*/} SCRIPT=${LINK#S[0-9][0-9]} # only execute a special script if selected |
From: <smi...@us...> - 2004-01-17 21:37:43
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv9199/scripts Modified Files: build.sh Log Message: removed the java stuff Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.71 retrieving revision 1.72 diff -u -d -r1.71 -r1.72 --- build.sh 17 Jan 2004 17:35:20 -0000 1.71 +++ build.sh 17 Jan 2004 21:37:40 -0000 1.72 @@ -265,10 +265,6 @@ echo "uname.old \$* | sed -e 's/i.86/i$CONFIG_CPU/' | sed -e 's/$REALKERNEL/$KERNELVERSION/'" > /bin/uname || exit 1 chmod +x /bin/uname || exit 1 - # set the java stuff, even when it's not available - export PATH=$PATH:/usr/lib/java/bin - export JAVA_HOME=/usr/lib/java - mkdir -p $WORKDIR/LOGS/$CMD || exit 1 for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) |
From: <smi...@us...> - 2004-01-17 18:39:23
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv408/scripts Modified Files: build-iso Log Message: run depmod before compression of iso content Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- build-iso 14 Jan 2004 22:41:27 -0000 1.53 +++ build-iso 17 Jan 2004 18:39:20 -0000 1.54 @@ -71,9 +71,19 @@ echo "do a 'make clean' in order to get it updated" $NORMAL fi - #=========================================================================== + + #=========================================================================== + echo "Updating module dependencies" + rm $CDDIR/lib/modules/$KERNELVERSION/modules.* + rm $INITRDDIR/lib/modules/$KERNELVERSION/modules.* + depmod -a -b $CDDIR -F $CDDIR/boot/System.map $KERNELVERSION || exit 1 + cp -dp $CDDIR/lib/modules/$KERNELVERSION/modules.* $INITRDDIR/lib/modules/$KERNELVERSION/ || exit 1 + echo "done" + echo + + #=========================================================================== # workaround ... for kernel 2.6 - #=========================================================================== + #=========================================================================== if [ "$CONFIG_LINUX_VERSON" = "2.6" ]; then CONFIG_ZISOFS=n CONFIG_INITRD_FS = EXT2 @@ -214,14 +224,6 @@ #=========================================================================== fi - echo "Updating module dependencies" - rm $CDDIR/lib/modules/$KERNELVERSION/modules.* - rm $INITRDDIR/lib/modules/$KERNELVERSION/modules.* - depmod -a -b $CDDIR -F $CDDIR/boot/System.map $KERNELVERSION || exit 1 - cp -dp $CDDIR/lib/modules/$KERNELVERSION/modules.* $INITRDDIR/lib/modules/$KERNELVERSION/ || exit 1 - echo "done" - echo - #=========================================================================== echo -n -e "\30/boot/logo.lss\n" > $CDDIR/boot/message |
From: <smi...@us...> - 2004-01-17 17:58:13
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv22459/scripts Modified Files: prepare Log Message: create missing modules directory for host os kernel version Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- prepare 16 Jan 2004 01:47:55 -0000 1.37 +++ prepare 17 Jan 2004 17:58:09 -0000 1.38 @@ -147,7 +147,7 @@ # one for the DL Kernel and one for the build system Kernel rm -rf /lib/modules mkdir -p /lib/modules/$KERNELVERSION || exit 1 - mkdir -p /lib/modules/$(uname -r) || exit 1 + mkdir -p /lib/modules/$(cat /proc/sys/kernel/osrelease) || exit 1 #depmod -a cp $DL_DIR/config/etc/passwd /etc || exit 1 |
From: <smi...@us...> - 2004-01-17 17:35:24
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv18282/scripts Modified Files: build.sh dhcp Log Message: script didn't like latest changes to build system Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.70 retrieving revision 1.71 diff -u -d -r1.70 -r1.71 --- build.sh 14 Jan 2004 03:32:26 -0000 1.70 +++ build.sh 17 Jan 2004 17:35:20 -0000 1.71 @@ -265,6 +265,10 @@ echo "uname.old \$* | sed -e 's/i.86/i$CONFIG_CPU/' | sed -e 's/$REALKERNEL/$KERNELVERSION/'" > /bin/uname || exit 1 chmod +x /bin/uname || exit 1 + # set the java stuff, even when it's not available + export PATH=$PATH:/usr/lib/java/bin + export JAVA_HOME=/usr/lib/java + mkdir -p $WORKDIR/LOGS/$CMD || exit 1 for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) Index: dhcp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dhcp,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- dhcp 15 Jan 2004 12:15:50 -0000 1.20 +++ dhcp 17 Jan 2004 17:35:20 -0000 1.21 @@ -41,7 +41,7 @@ INCDIR=$WORKDIR/tmp/usr/local/include EOF - ./configure linux || exit 1 + ./configure || exit 1 make $PMAKE all || exit 1 strip_debug fi @@ -50,7 +50,7 @@ install ) if [ "$CONFIG_ISC_DHCP" = "y" ]; then rm -rf $WORKDIR/tmp || exit 1 - mkdir -p $WORKDIR/tmp || exit 1 + mkdir -p $WORKDIR/tmp/sbin || exit 1 make install || exit 1 copy_docs $WORKDIR/tmp rm -rf $WORKDIR/tmp/usr/local || exit 1 |
From: <smi...@us...> - 2004-01-17 14:46:07
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv17145/build/scripts Modified Files: super-freeswan Log Message: fixed typo and set missing kernel options Index: super-freeswan =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/super-freeswan,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- super-freeswan 17 Jan 2004 01:15:39 -0000 1.5 +++ super-freeswan 17 Jan 2004 14:46:04 -0000 1.6 @@ -39,14 +39,17 @@ set_kernel_option $CFG m done for CFG in $( grep bool $DIR | cut -d "'" -f 3 | cut -d " " -f 2 ); do - if [ ! "$CFG" = "CONFIG_IPSEC_DEBUG" ] - && [ ! "$CFG" = "CONFIG_IPSEC_ALG_NON_LIBRE" ] + if [ ! "$CFG" = "CONFIG_IPSEC_DEBUG" ] \ + && [ ! "$CFG" = "CONFIG_IPSEC_ALG_NON_LIBRE" ] \ && [ ! "$CFG" = "CONFIG_IPSEC_ALG_CRYPTOAPI" ]; then set_kernel_option $CFG y fi done done set_kernel_option CONFIG_IPSEC m + set_kernel_option CONFIG_IPSEC_DEBUG n + set_kernel_option CONFIG_IPSEC_ALG_NON_LIBRE n + set_kernel_option CONFIG_IPSEC_ALG_CRYPTOAPI n replace_str Makefile.inc /usr/local /usr replace_str Makefile.inc /usr/src/linux $KERNELDIR |
From: <smi...@us...> - 2004-01-17 13:42:14
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7201/scripts Modified Files: ebtables grsecurity Log Message: fixed small typo don't try to apply grsec patch when already done Index: ebtables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ebtables,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ebtables 16 Jan 2004 01:47:55 -0000 1.6 +++ ebtables 17 Jan 2004 13:42:11 -0000 1.7 @@ -39,7 +39,7 @@ set_kernel_option $CFG y done - set_kernel_option CONFIG_IP_NF_MATCH_PHYSDEV=m + set_kernel_option CONFIG_IP_NF_MATCH_PHYSDEV m fi make MANDIR=/usr/share/man $PMAKE all|| exit 1 strip_debug Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- grsecurity 11 Jan 2004 14:43:04 -0000 1.14 +++ grsecurity 17 Jan 2004 13:42:11 -0000 1.15 @@ -29,7 +29,10 @@ build ) if [ "$CONFIG_GRSECURITY" = "y" ] ; then cd $KERNELDIR - bzcat $DL_DIR/src/grsecurity*.patch.bz2 | patch -p1 || exit 1 + if [ ! -f devil-linux-grsec-kernel-patches.done ]; then + touch devil-linux-grsec-kernel-patches.done + bzcat $DL_DIR/src/grsecurity*.patch.bz2 | patch -p1 || exit 1 + fi # add configuration to kernel config cat $MYDIR/config/config_grsecurity >> .config # start oldconfig, in case there are new options |
From: <smi...@us...> - 2004-01-17 03:02:48
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv12758 Modified Files: CHANGES Log Message: set missing parameter Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.658 retrieving revision 1.659 diff -u -d -r1.658 -r1.659 --- CHANGES 17 Jan 2004 02:24:42 -0000 1.658 +++ CHANGES 17 Jan 2004 03:02:45 -0000 1.659 @@ -22,6 +22,7 @@ # 1.1.2 +- updated automake to v1.8.2 - updated tcpdump to v3.8.1 - updated libpcap to v0.8.1 - updated xfsprogs to v2.6.2 |
From: <smi...@us...> - 2004-01-17 02:24:45
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv7708 Modified Files: CHANGES Log Message: update Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.657 retrieving revision 1.658 diff -u -d -r1.657 -r1.658 --- CHANGES 17 Jan 2004 01:15:39 -0000 1.657 +++ CHANGES 17 Jan 2004 02:24:42 -0000 1.658 @@ -22,6 +22,8 @@ # 1.1.2 +- updated tcpdump to v3.8.1 +- updated libpcap to v0.8.1 - updated xfsprogs to v2.6.2 - updated acl to v2.2.22 - updated attr to v2.4.13 |
From: <smi...@us...> - 2004-01-17 01:32:54
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs1:/tmp/cvs-serv32047/scripts/config/linux-2.6 Modified Files: config_linux Log Message: enabled a few more networking options Index: config_linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/linux-2.6/config_linux,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- config_linux 17 Jan 2004 01:15:40 -0000 1.6 +++ config_linux 17 Jan 2004 01:32:51 -0000 1.7 @@ -591,11 +591,11 @@ # CONFIG_IP_VS_FTP=m CONFIG_IPV6=y -# CONFIG_IPV6_PRIVACY is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_TUNNEL is not set +CONFIG_IPV6_PRIVACY=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +CONFIG_IPV6_TUNNEL=m # CONFIG_DECNET is not set CONFIG_BRIDGE=m CONFIG_NETFILTER=y @@ -650,15 +650,15 @@ CONFIG_IP_NF_TARGET_ECN=m CONFIG_IP_NF_TARGET_DSCP=m CONFIG_IP_NF_TARGET_MARK=m -# CONFIG_IP_NF_TARGET_CLASSIFY is not set +CONFIG_IP_NF_TARGET_CLASSIFY=m CONFIG_IP_NF_TARGET_LOG=m CONFIG_IP_NF_TARGET_ULOG=m CONFIG_IP_NF_TARGET_TCPMSS=m CONFIG_IP_NF_ARPTABLES=m CONFIG_IP_NF_ARPFILTER=m CONFIG_IP_NF_ARP_MANGLE=m -CONFIG_IP_NF_COMPAT_IPCHAINS=m -CONFIG_IP_NF_COMPAT_IPFWADM=m +# CONFIG_IP_NF_COMPAT_IPCHAINS is not set +# CONFIG_IP_NF_COMPAT_IPFWADM is not set # # IPv6: Netfilter Configuration @@ -692,13 +692,13 @@ CONFIG_BRIDGE_EBT_T_NAT=m CONFIG_BRIDGE_EBT_802_3=m CONFIG_BRIDGE_EBT_AMONG=m -# CONFIG_BRIDGE_EBT_ARP is not set -# CONFIG_BRIDGE_EBT_IP is not set +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m CONFIG_BRIDGE_EBT_LIMIT=m -# CONFIG_BRIDGE_EBT_MARK is not set +CONFIG_BRIDGE_EBT_MARK=m CONFIG_BRIDGE_EBT_PKTTYPE=m CONFIG_BRIDGE_EBT_STP=m -# CONFIG_BRIDGE_EBT_VLAN is not set +CONFIG_BRIDGE_EBT_VLAN=m CONFIG_BRIDGE_EBT_ARPREPLY=m CONFIG_BRIDGE_EBT_DNAT=m CONFIG_BRIDGE_EBT_MARK_T=m @@ -707,7 +707,6 @@ CONFIG_BRIDGE_EBT_LOG=m CONFIG_XFRM=m CONFIG_XFRM_USER=m -# CONFIG_XFRM_USER is not set # # SCTP Configuration (EXPERIMENTAL) @@ -1695,7 +1694,7 @@ CONFIG_CRYPTO_HMAC=y CONFIG_CRYPTO_NULL=m CONFIG_CRYPTO_MD4=m -CONFIG_CRYPTO_MD5=m +CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_SHA1=m CONFIG_CRYPTO_SHA256=m CONFIG_CRYPTO_SHA512=m |
From: <smi...@us...> - 2004-01-17 01:15:43
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv27442/scripts/configuration Modified Files: xfsprogs.config Log Message: get xfs working under 2.6 make sure selection of program get's included is done only in menuconfig Index: xfsprogs.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/xfsprogs.config,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- xfsprogs.config 11 Jan 2004 14:43:05 -0000 1.4 +++ xfsprogs.config 17 Jan 2004 01:15:40 -0000 1.5 @@ -5,9 +5,7 @@ # # http://www.devil-linux.org -if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then - if [ ! "$CONFIG_GRSECURITY" = "y" ]; then - menu_add "System|Filesystems" bool "XFS Support ( most likely BROKEN )" CONFIG_XFS - fi +if [ ! "$CONFIG_GRSECURITY" = "y" ]; then + menu_add "System|Filesystems" bool "XFS Support ( most likely BROKEN )" CONFIG_XFS fi |
From: <smi...@us...> - 2004-01-17 01:15:42
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs1:/tmp/cvs-serv27442/scripts/config/linux-2.6 Modified Files: config_linux Log Message: get xfs working under 2.6 make sure selection of program get's included is done only in menuconfig Index: config_linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/linux-2.6/config_linux,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- config_linux 17 Jan 2004 00:43:56 -0000 1.5 +++ config_linux 17 Jan 2004 01:15:40 -0000 1.6 @@ -1523,10 +1523,10 @@ # CONFIG_JFS_DEBUG is not set CONFIG_JFS_STATISTICS=y CONFIG_FS_POSIX_ACL=y -CONFIG_XFS_FS=m +CONFIG_XFS_FS=n # CONFIG_XFS_RT is not set -CONFIG_XFS_QUOTA=y -CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=n +CONFIG_XFS_POSIX_ACL=n CONFIG_MINIX_FS=m CONFIG_ROMFS_FS=m CONFIG_QUOTA=y |
From: <smi...@us...> - 2004-01-17 01:15:42
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv27442/scripts Modified Files: LVM LVM2 super-freeswan xfsprogs Log Message: get xfs working under 2.6 make sure selection of program get's included is done only in menuconfig Index: LVM =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- LVM 16 Jan 2004 01:47:55 -0000 1.15 +++ LVM 17 Jan 2004 01:15:39 -0000 1.16 @@ -24,8 +24,6 @@ source $MYDIR/settings MYNAME=LVM -test ! "$CONFIG_LINUX_VERSION" = "2.4" && exit 0 -test "$CONFIG_LVM2" = "y" && exit 0 case $1 in build ) Index: LVM2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM2,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- LVM2 16 Jan 2004 02:06:42 -0000 1.2 +++ LVM2 17 Jan 2004 01:15:39 -0000 1.3 @@ -1,4 +1,4 @@ -#!/bin/bash -x +#!/bin/bash # $Source$ # $Revision$ # $Date$ @@ -28,9 +28,9 @@ case $1 in build ) if [ "$CONFIG_LVM2" = "y" ]; then - pushd `pwd` + pushd `pwd` cd ../device-mapper* - # + # # patch the device mapper into 2.4 # if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then @@ -39,9 +39,8 @@ patch -p1 -d ../linux-2.4.24 <`pwd`/patches/linux-2.4.22-VFS-lock.patch || exit 1 set_kernel_option CONFIG_BLK_DEV_DM y set_kernel_option CONFIG_BLK_DEV_DM_MIRROR m - else - ./configure fi + ./configure make $PMAKE || exit 1 make install || exit 1 popd Index: super-freeswan =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/super-freeswan,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- super-freeswan 16 Jan 2004 01:47:55 -0000 1.4 +++ super-freeswan 17 Jan 2004 01:15:39 -0000 1.5 @@ -25,9 +25,6 @@ MYNAME=FREESWAN -# not supported in moment with kernel 2.6 -test ! "$CONFIG_LINUX_VERSION" = "2.4" && exit 0 - case $1 in build ) if [ "$CONFIG_SUPER_FREESWAN" = "y" ]; then Index: xfsprogs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/xfsprogs,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- xfsprogs 16 Jan 2004 01:47:55 -0000 1.21 +++ xfsprogs 17 Jan 2004 01:15:39 -0000 1.22 @@ -28,13 +28,13 @@ case $1 in build ) if [ "$CONFIG_XFS" = "y" ]; then - pushd $KERNELDIR > /dev/null - if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then + if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then + pushd $KERNELDIR > /dev/null pushd $KERNELDIR > /dev/null - echo "patching Kernel ..." - XFSPATCH=$(ls $DL_DIR/src/xfs*-all*.bz2) - bzcat $XFSPATCH | patch -p1 || exit 1 - if [ "$CONFIG_ACL" = "y" ]; then + echo "patching Kernel ..." + XFSPATCH=$(ls $DL_DIR/src/xfs*-all*.bz2) + bzcat $XFSPATCH | patch -p1 || exit 1 + if [ "$CONFIG_ACL" = "y" ]; then set_kernel_option CONFIG_FS_POSIX_ACL y else set_kernel_option CONFIG_FS_POSIX_ACL n |
From: <smi...@us...> - 2004-01-17 01:15:42
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv27442 Modified Files: CHANGES Log Message: get xfs working under 2.6 make sure selection of program get's included is done only in menuconfig Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.656 retrieving revision 1.657 diff -u -d -r1.656 -r1.657 --- CHANGES 17 Jan 2004 00:43:56 -0000 1.656 +++ CHANGES 17 Jan 2004 01:15:39 -0000 1.657 @@ -22,6 +22,9 @@ # 1.1.2 +- updated xfsprogs to v2.6.2 +- updated acl to v2.2.22 +- updated attr to v2.4.13 - enabled pcmcia stuff in kernel 2.6 - added pax-linux-2.4.23-200401091805 patch, so you don't need to choose full grsecurity anymore - added patch against rtc leakage in kernel 2.6 (Heiko / Oliver Jehle) |
From: <smi...@us...> - 2004-01-17 00:44:00
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv20835/scripts/configuration Modified Files: cipe.config quota-tools.config samba.config usbutils.config Log Message: enabled pcmcia in kernel and disabled some more programs for kernel 2.6 Index: cipe.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/cipe.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- cipe.config 2 Oct 2003 15:58:26 -0000 1.2 +++ cipe.config 17 Jan 2004 00:43:56 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "Networking|VPN" bool "CIPE (VPN)" CONFIG_CIPE +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Networking|VPN" bool "CIPE (VPN)" CONFIG_CIPE Index: quota-tools.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/quota-tools.config,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- quota-tools.config 17 Dec 2003 14:55:47 -0000 1.1 +++ quota-tools.config 17 Jan 2004 00:43:56 -0000 1.2 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "System|Filesystems" bool "Quota Tools" CONFIG_QUOTA_TOOLS +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "System|Filesystems" bool "Quota Tools" CONFIG_QUOTA_TOOLS Index: samba.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/samba.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- samba.config 2 Oct 2003 15:58:26 -0000 1.2 +++ samba.config 17 Jan 2004 00:43:56 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "Networking|Services" bool "Samba" CONFIG_SAMBA +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Networking|Services" bool "Samba" CONFIG_SAMBA Index: usbutils.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/usbutils.config,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- usbutils.config 2 Oct 2003 15:58:26 -0000 1.4 +++ usbutils.config 17 Jan 2004 00:43:56 -0000 1.5 @@ -4,4 +4,4 @@ # $Date$ # http://www.devil-linux.org -menu_add "Tools|Utilities" bool "USB Utilities" CONFIG_USBUTILS +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Tools|Utilities" bool "USB Utilities" CONFIG_USBUTILS |
From: <smi...@us...> - 2004-01-17 00:43:59
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs1:/tmp/cvs-serv20835/scripts/config/linux-2.6 Modified Files: config_linux Log Message: enabled pcmcia in kernel and disabled some more programs for kernel 2.6 Index: config_linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/linux-2.6/config_linux,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- config_linux 16 Jan 2004 01:47:55 -0000 1.4 +++ config_linux 17 Jan 2004 00:43:56 -0000 1.5 @@ -160,7 +160,7 @@ CONFIG_PCI_GOANY=y CONFIG_PCI_BIOS=y CONFIG_PCI_DIRECT=y -# CONFIG_PCI_USE_VECTOR is not set +CONFIG_PCI_USE_VECTOR=y # CONFIG_PCI_LEGACY_PROC is not set CONFIG_PCI_NAMES=y CONFIG_ISA=y @@ -176,7 +176,12 @@ # # PCMCIA/CardBus support # -# CONFIG_PCMCIA is not set +CONFIG_PCMCIA=m +CONFIG_YENTA=m +CONFIG_CARDBUS=y +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_TCIC=m CONFIG_PCMCIA_PROBE=y # @@ -221,6 +226,7 @@ # CONFIG_PARPORT_SERIAL is not set CONFIG_PARPORT_PC_FIFO=y CONFIG_PARPORT_PC_SUPERIO=y +# CONFIG_PARPORT_PC_PCMCIA is not set # CONFIG_PARPORT_OTHER is not set CONFIG_PARPORT_1284=y @@ -268,6 +274,7 @@ CONFIG_BLK_DEV_IDEDISK=y CONFIG_IDEDISK_MULTI_MODE=y # CONFIG_IDEDISK_STROKE is not set +CONFIG_BLK_DEV_IDECS=m CONFIG_BLK_DEV_IDECD=y CONFIG_BLK_DEV_IDETAPE=m CONFIG_BLK_DEV_IDEFLOPPY=m @@ -446,6 +453,14 @@ # CONFIG_SCSI_DEBUG is not set # +# PCMCIA SCSI adapter support +# +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_NINJA_SCSI=m +CONFIG_PCMCIA_QLOGIC=m + +# # Old CD-ROM drivers (not SCSI, not IDE) # # CONFIG_CD_NO_IDESCSI is not set @@ -802,6 +817,7 @@ CONFIG_DE4X5=m CONFIG_WINBOND_840=m CONFIG_DM9102=m +CONFIG_PCMCIA_XIRCOM=m CONFIG_AT1700=m CONFIG_DEPCA=m CONFIG_HP100=m @@ -905,6 +921,13 @@ CONFIG_STRIP=m CONFIG_ARLAN=m CONFIG_WAVELAN=m +CONFIG_PCMCIA_WAVELAN=m +CONFIG_PCMCIA_NETWAVE=m + +# +# Wireless 802.11 Frequency Hopping cards support +# +CONFIG_PCMCIA_RAYCS=m # # Wireless 802.11b ISA/PCI cards support @@ -914,6 +937,14 @@ CONFIG_PLX_HERMES=m CONFIG_TMD_HERMES=m CONFIG_PCI_HERMES=m + +# +# Wireless 802.11b Pcmcia/Cardbus cards support +# +CONFIG_PCMCIA_HERMES=m +CONFIG_AIRO_CS=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_WL3501=m CONFIG_NET_WIRELESS=y # @@ -940,6 +971,20 @@ # CONFIG_WAN is not set # +# PCMCIA network device support +# +CONFIG_NET_PCMCIA=y +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_AXNET=m +CONFIG_PCMCIA_IBMTR=m + +# # ATM drivers # CONFIG_ATM_TCP=m @@ -1041,6 +1086,7 @@ # Serial drivers # CONFIG_SERIAL_8250=m +CONFIG_SERIAL_8250_CS=m CONFIG_SERIAL_8250_NR_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_MANY_PORTS=y @@ -1174,6 +1220,11 @@ # # CONFIG_AGP is not set # CONFIG_DRM is not set + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m # CONFIG_MWAVE is not set # CONFIG_RAW_DRIVER is not set CONFIG_HANGCHECK_TIMER=m @@ -1246,7 +1297,7 @@ CONFIG_FB=y # CONFIG_FB_CYBER2000 is not set # CONFIG_FB_IMSTT is not set -CONFIG_FB_VGA16=y +# CONFIG_FB_VGA16 is not set CONFIG_FB_VESA=y CONFIG_VIDEO_SELECT=y # CONFIG_FB_HGA is not set @@ -1268,17 +1319,7 @@ CONFIG_VGA_CONSOLE=y # CONFIG_MDA_CONSOLE is not set CONFIG_DUMMY_CONSOLE=y -CONFIG_FRAMEBUFFER_CONSOLE=m -CONFIG_PCI_CONSOLE=y -CONFIG_FONTS=y -CONFIG_FONT_8x8=y -CONFIG_FONT_8x16=y -# CONFIG_FONT_6x11 is not set -# CONFIG_FONT_PEARL_8x8 is not set -# CONFIG_FONT_ACORN_8x8 is not set -# CONFIG_FONT_MINI_4x6 is not set -# CONFIG_FONT_SUN8x16 is not set -# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FRAMEBUFFER_CONSOLE is not set # # Logo configuration |
From: <smi...@us...> - 2004-01-17 00:43:59
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv20835 Modified Files: CHANGES Log Message: enabled pcmcia in kernel and disabled some more programs for kernel 2.6 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.655 retrieving revision 1.656 diff -u -d -r1.655 -r1.656 --- CHANGES 16 Jan 2004 19:16:55 -0000 1.655 +++ CHANGES 17 Jan 2004 00:43:56 -0000 1.656 @@ -22,6 +22,7 @@ # 1.1.2 +- enabled pcmcia stuff in kernel 2.6 - added pax-linux-2.4.23-200401091805 patch, so you don't need to choose full grsecurity anymore - added patch against rtc leakage in kernel 2.6 (Heiko / Oliver Jehle) - updated cyrus-imapd to v2.2.3 |