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...> - 2007-10-23 06:47:12
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv25266 Modified Files: nfs-utils Added Files: rng-tools cryptsetup Log Message: - added rng-tools, cryptsetup --- NEW FILE: rng-tools --- #!/bin/bash # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: rng-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 MYNAME=RNGTOOLS case $1 in build ) if [ "$CONFIG_RNGTOOLS" = "y" ]; then ./configure CFLAGS="-Wall -pipe -02" --prefix=/usr --sysconfdir=/etc --localstatedir=/var || exit 1 make $PMAKE all || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_RNGTOOLS" = "y" ]; then rm -rf $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 copy_docs $TMPDIR/usr || exit 1 copy_files $TMPDIR/* $CDDIR/ || exit 1 rm -rf $TMPDIR || exit 1 cp $MYDIR/scripts/rngd $ETCDIR/etc/init.d || exit 1 echo "# Start rngd?" >> $CONFIGFILE echo "START_RNGD=no" >> $CONFIGFILE echo >> $CONFIGFILE echo "HRNGDEVICE=/dev/hw_random" >> $CONFIGFILE echo "HELP_$MYNAME=\"$MYNAME contains the rngd daemon. It acts as a bridge between a Hardware TRNG (true random number generator) such as the ones in some Intel/AMD/VIA chipsets, and the kernel's PRNG (pseudo-random number generator). \"" >> $SOFTWAREHELP fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: cryptsetup --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/cryptsetup,v $ # $Revision: 1.1 $ # $Date: 2007/10/23 06:47:03 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: cryptsetup # 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 ) ./configure --prefix=/usr --disable-nls || exit 1 make || exit 1 ;; install ) rm -rf $TMPDIR mkdir $TMPDIR make install DESTDIR=$TMPDIR || exit 1 rm -rf $TMPDIR/usr/include || exit 1 rm -rf $TMPDIR/usr/lib/*la || exit 1 cp -ar $TMPDIR/usr $CDDIR/ || exit 1 rm -rf $TMPDIR ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: nfs-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/nfs-utils,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- nfs-utils 31 Aug 2007 14:05:20 -0000 1.5 +++ nfs-utils 23 Oct 2007 06:47:03 -0000 1.6 @@ -26,17 +26,18 @@ case $1 in build ) if [ "$CONFIG_NFSD" = "y" ]; then - ./configure --prefix=/usr --disable-gss || exit 1 - make || exit 1 - strip_debug - fi + ./configure --prefix=/usr --disable-gss || exit 1 + make || exit 1 + strip_debug + fi ;; install ) if [ "$CONFIG_NFSD" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 - make install DESTDIR=$CDDIR || exit 1 + make install DESTDIR=$TMPDIR || exit 1 + cp -ar $TMPDIR/* $CDDIR/ || exit 1 rm -rf $TMPDIR || exit 1 cp -p /etc/rpc $ETCDIR/etc/ || exit 1 cat > $ETCDIR/etc/sysconfig/nfs-server <<-EOF |
|
From: Serge L. <sma...@us...> - 2007-10-23 06:47:09
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv25266/scripts Added Files: rngd Log Message: - added rng-tools, cryptsetup --- NEW FILE: rngd --- #!/bin/bash # ### BEGIN INIT INFO # Provides: rngd # Required-Start: $syslog # Required-Stop: $syslog # Default-Start: # Default-Stop: # Description: starts the rngd daemon ### END INIT INFO # settings source /etc/sysconfig/config # parameters NAME="RNG daemon" CONFIGNAME=RNGD DAEMON=/usr/sbin/rngd PARAMETER="-r $HRNGDEVICE" # source function library source /etc/init.d/functions eval START=\$START_$CONFIGNAME # Determine the base and follow a runlevel link name. base=${0##*/} link=${base#*[SK][0-9][0-9]} # Force execution if not called by a runlevel directory. test $link = $base && START=yes test "$START" = "yes" || exit 0 if [ ! -e $DAEMON ]; then echo echo "$DAEMON not found. Did you install the package?" exit 1 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: Heiko Z. <smi...@us...> - 2007-10-22 19:35:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4686/scripts Modified Files: Tag: rel-1-2-patches glibc Log Message: undo glibc 2.3.6 Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.31.2.4 retrieving revision 1.31.2.5 diff -u -d -r1.31.2.4 -r1.31.2.5 --- glibc 20 Oct 2007 12:46:08 -0000 1.31.2.4 +++ glibc 22 Oct 2007 19:35:01 -0000 1.31.2.5 @@ -49,18 +49,28 @@ rm -rf ../glibc-build mkdir ../glibc-build || exit 1 cd ../glibc-build || exit 1 + # unfortunately we can only go as high as the host kernel version + + #KVER_RUN=$(cat /proc/sys/kernel/osrelease) + #if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then + # KVER=$KVER_RUN + #else + # KVER=$KERNELVERSION + #fi # set the minimum kernel level, so our remote updates won't fail KVER=2.4.22 - ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --enable-kernel=$KVER --without-gd || exit 1 + ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --libexecdir=/usr/bin --enable-kernel=$KVER --without-gd || exit 1 make $PMAKE || exit 1 + #make || exit 1 strip_debug || exit 1 - # we have to install this immediately, because this is a library and will be needed by other sources - - make install || exit 1 + # we have to install this immediately, because this is a library and could be needed by other sources + make install || exit 1 + #make localedata/install-locales || exit 1 + ln -sf libdl.so.2 /lib/libdl.so || exit 1 ;; install ) |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 19:35:05
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv4686 Modified Files: Tag: rel-1-2-patches CHANGES md5sum.lst Log Message: undo glibc 2.3.6 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.330 retrieving revision 1.807.2.331 diff -u -d -r1.807.2.330 -r1.807.2.331 --- CHANGES 20 Oct 2007 12:46:08 -0000 1.807.2.330 +++ CHANGES 22 Oct 2007 19:35:00 -0000 1.807.2.331 @@ -27,7 +27,6 @@ - updated db to 4.6.21 - updated freetype to 2.3.5 - updated glib to 2.14.2 -- updated glibc to 2.3.6 - updated heartbeat to 2.1.2 - updated l7-protocols to 2007-10-10 - updated libpng to 1.2.22 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.102.2.222 retrieving revision 1.102.2.223 diff -u -d -r1.102.2.222 -r1.102.2.223 --- md5sum.lst 20 Oct 2007 12:46:08 -0000 1.102.2.222 +++ md5sum.lst 22 Oct 2007 19:35:00 -0000 1.102.2.223 @@ -210,9 +210,9 @@ e1a0fd923345977412375884ac9e33c5 src/giftext-segfault.patch.bz2 6fe30dad87c77b91b632def29dd69ef9 src/glib-1.2.10.tar.gz fca5d26c8efea4e6e547c81c801bf67c src/glib-2.14.2.tar.bz2 -bfdce99f82d6dbcb64b7f11c05d6bc96 src/glibc-2.3.6.tar.bz2 -d4eeda37472666a15cc1f407e9c987a9 src/glibc-linuxthreads-2.3.6.tar.bz2 -8695bdf23d10f86f0928e8d93cb61f6a src/glibc-patches.tar.bz2 +ede969aad568f48083e413384f20753c src/glibc-2.3.2.tar.bz2 +894b8969cfbdf787c73e139782167607 src/glibc-linuxthreads-2.3.2.tar.bz2 +60bd8402892f120f77727c0ef8f6ffda src/glibc-patches.tar.bz2 091c56e0e1cca6b09b17b69d47ef18e3 src/gmp-4.2.1.tar.bz2 8f47cfa4b375deae65aa3b993476e9e4 src/gnugk-2.2.6.tar.gz b06a141cca5cd1a55bbdd25ab833303c src/gnupg-1.4.7.tar.bz2 |
|
From: Serge L. <sma...@us...> - 2007-10-22 18:46:38
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv18868 Modified Files: md5sum.lst Log Message: - added LUKS (Linux Unified Key Setup) cryptsetup - added rngtools - updated l7 filter Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.374 retrieving revision 1.375 diff -u -d -r1.374 -r1.375 --- md5sum.lst 22 Oct 2007 18:37:39 -0000 1.374 +++ md5sum.lst 22 Oct 2007 18:46:35 -0000 1.375 @@ -145,6 +145,7 @@ 555f7832b63ebc7fb70b0373500c2358 src/cracklib-2.8.10.tar.gz d18e670e5df560a8745e1b4dede8f84f src/cracklib-words.gz c3331c0509e5f1e1ce26502d8be0c70b src/cron-4.1.tar.bz2 +0aa2f94c39123f1a0352983e5366179c src/cryptsetup-1.0.5.tar.bz2 a84124caadd4103270e0b84596ecfe83 src/ctags-5.5.4.tar.gz ffa6d1f4e28ca493a43f9dc17882c4d8 src/curl-7.16.4.tar.bz2 e0eb377840b01e11e5cd008ae9b7d2af src/cutter-1.02.tgz @@ -371,7 +372,7 @@ 888774accab40217dde927e21979c165 src/net-tools-1.60.tar.bz2 e4da725325c175f1b4c114c5e305cfa8 src/net-tools_1.60-9.diff.gz c2bc56b61028bce36a5cc3fe7e81058e src/netacct-mysql-0.78.tar.gz -c8097875074405be31e4372682b68d7a src/netfilter-layer7-v2.13.tar.gz +35bd48c3b8d6d7d1af09bf7ffc7a158b src/netfilter-layer7-v2.14.tar.gz 6666e32c693f13283c92261c40e179b5 src/netpbm-10.26.32.tgz 407785488241f9db67b1874e3f36370e src/nfs-utils-1.1.1.tar.gz ea50419f99472200c4184a304e3831ea src/nmap-4.20.tar.bz2 @@ -438,6 +439,7 @@ cd709ab8a284c87048f95f76f5f69374 src/rcs-5.7.tar.bz2 7ee5a692db88b30ca48927a13fd60e46 src/readline-5.1.tar.gz 3b3392f59c5d302cf858bc4cf194b258 src/reiserfsprogs-3.6.20.tar.gz +b01aa8b7e833dbf9d230f146fb23a1bf src/rng-tools_2-unofficial-mt.10.orig.tar.gz 0e32760f498f9cde44081ee6aafc823b src/rp-pppoe-3.8.tar.gz b0c3093d2f0d850760e59ac1db9bf152 src/rpm-4.0.4.tar.gz dafa161bc9c61e57636a6085c87c1fe8 src/rrdtool-1.2.23.tar.gz |
|
From: Serge L. <sma...@us...> - 2007-10-22 18:37:43
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv16236 Modified Files: md5sum.lst CHANGES Log Message: - updated unionfs Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.373 retrieving revision 1.374 diff -u -d -r1.373 -r1.374 --- md5sum.lst 22 Oct 2007 13:13:07 -0000 1.373 +++ md5sum.lst 22 Oct 2007 18:37:39 -0000 1.374 @@ -495,7 +495,7 @@ 5f387296f1771c1c6b652284cfab5d9b src/udev-config-20070304.tar.bz2 b8f93446d52cd1e48323fa49f10a790c src/unarj_2.43-3.diff.gz 7a481dc017f1fbfa7f937a97e66eb99f src/unarj_2.43.orig.tar.gz -8385565418989573a0981dde4568c724 src/unionfs-2.1.3_for_2.6.21.7.diff.gz +c7b5c0d142458a2e61c8496820c91c3d src/unionfs-2.1.6_for_2.6.21.7.diff.gz 131f879120945137f96cabc685060826 src/unrar-3.6.8_fix.patch.bz2 903363aada5fafa9bd00cac3309e6e45 src/unrarsrc-3.6.8.tar.gz 9d23919999d6eac9217d1f41472034a9 src/unzip552.tar.gz Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1130 retrieving revision 1.1131 diff -u -d -r1.1130 -r1.1131 --- CHANGES 22 Oct 2007 14:09:29 -0000 1.1130 +++ CHANGES 22 Oct 2007 18:37:40 -0000 1.1131 @@ -22,6 +22,7 @@ # 1.3.4 +- updated unionfs to 2.1.6 (sl) - removed APM support - updated minicom-2.3 to rc1 - updated nfs-utils to 1.1.1 |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:09:34
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv15176 Modified Files: CHANGES Log Message: removed APM support Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1129 retrieving revision 1.1130 diff -u -d -r1.1129 -r1.1130 --- CHANGES 22 Oct 2007 13:13:07 -0000 1.1129 +++ CHANGES 22 Oct 2007 14:09:29 -0000 1.1130 @@ -22,6 +22,7 @@ # 1.3.4 +- removed APM support - updated minicom-2.3 to rc1 - updated nfs-utils to 1.1.1 - updated quagga to 0.99.9-20071018 |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:09:34
|
Update of /cvsroot/devil-linux/build/config/etc/sysconfig In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv15136/etc/sysconfig Modified Files: config Log Message: removed APM support Index: config =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/sysconfig/config,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- config 24 Jul 2007 08:06:08 -0000 1.29 +++ config 22 Oct 2007 14:09:17 -0000 1.30 @@ -72,10 +72,6 @@ # additional parameters for syslogd SYSLOGD_PARAM= -# should we enable APM, i.e. to turn the system off after shutdown -# NOTE: no energy safer functions are supported -ENABLE_APM=yes - # Override default size of the shmfs filesystem. # The size is given in bytes, and rounded down to entire pages. # The default is half of the memory. |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:09:33
|
Update of /cvsroot/devil-linux/build/config/etc/init.d In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv15136/etc/init.d Modified Files: boot Log Message: removed APM support Index: boot =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/init.d/boot,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- boot 3 Apr 2007 12:01:32 -0000 1.31 +++ boot 22 Oct 2007 14:09:17 -0000 1.32 @@ -67,10 +67,6 @@ evaluate_retval fi -if [ "$ENABLE_APM" = "yes" ]; then - modprobe apm power_off=1 -fi - if [ "$START_VMWARE" = "yes" ]; then echo "Loading VMWare modules" modprobe vmmemctl |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:08:54
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv14757 Modified Files: prepare Log Message: removed APM support Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- prepare 19 Oct 2007 17:45:51 -0000 1.68 +++ prepare 22 Oct 2007 14:08:51 -0000 1.69 @@ -90,7 +90,7 @@ if [ "$CONFIG_UNIONFS" == "y" ]; then if [ ! -f devil-linux-unionfs-kernel-patches.done ]; then touch devil-linux-unionfs-kernel-patches.done - zcat $SRCDIR/unionfs-2.1.3_for_2.6.*.diff.gz | patch -p1 || exit 1 + zcat $SRCDIR/unionfs-*_for_2.6.*.diff.gz | patch -p1 || exit 1 fi fi @@ -129,17 +129,6 @@ fi fi - case "$CONFIG_LINUX_POWER_MGMT" in - APM | ACPI ) - cat $KERNEL_CONFIG_DIR/config_linux.$CONFIG_LINUX_POWER_MGMT >> $KERNELDIR/.config || exit 1 - ;; - *) - set_kernel_option CONFIG_PM n - set_kernel_option CONFIG_APM n - set_kernel_option CONFIG_ACPI n - ;; - esac - # make sure all netfilter modules are enabled set_all_kernel_options net/bridge set_all_kernel_options net/netfilter |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:08:42
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv14735 Modified Files: linux.config Log Message: removed APM support Index: linux.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/linux.config,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- linux.config 22 Mar 2007 01:48:37 -0000 1.16 +++ linux.config 22 Oct 2007 14:08:38 -0000 1.17 @@ -5,11 +5,8 @@ # # http://www.devil-linux.org -test -z "$CONFIG_LINUX_POWER_MGMT" && CONFIG_LINUX_POWER_MGMT=OFF test -z "$CONFIG_LINUX_NR_CPUS" && CONFIG_LINUX_NR_CPUS=4 test -z "$CONFIG_LINUX_VERSION" && CONFIG_LINUX_VERSION=2.6 menu_add "Build Configuration|Processor and Memory" list "Maximum number of CPUs" CONFIG_LINUX_NR_CPUS 2 4 8 16 32 menu_add "Build Configuration" list "Kernel Version" CONFIG_LINUX_VERSION 2.6 -test "$CONFIG_LINUX_VERSION" = "2.6" && menu_add "Build Configuration" list "Power Management" CONFIG_LINUX_POWER_MGMT OFF APM ACPI -#test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Build Configuration" list "Power Management" CONFIG_LINUX_POWER_MGMT OFF APM menu_add "Build Configuration" bool "Kernel Magic Sysrq" CONFIG_LINUX_SYSRQ |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 14:08:28
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv14714/linux-2.6 Modified Files: config_linux Removed Files: config_linux.ACPI Log Message: removed APM support --- config_linux.ACPI DELETED --- Index: config_linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/linux-2.6/config_linux,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- config_linux 14 Sep 2007 10:47:45 -0000 1.44 +++ config_linux 22 Oct 2007 14:08:24 -0000 1.45 @@ -2682,3 +2682,29 @@ CONFIG_CFAG12864B_RATE=20 CONFIG_VMI=y CONFIG_FB_SM501=n + +# +# ACPI (Advanced Configuration and Power Interface) Support +# +CONFIG_ACPI=y +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_HOTKEY=m +CONFIG_ACPI_FAN=m +CONFIG_ACPI_DOCK=m +CONFIG_ACPI_PROCESSOR=m +CONFIG_ACPI_THERMAL=m +CONFIG_ACPI_ASUS=m +CONFIG_ACPI_IBM=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_BLACKLIST_YEAR=2000 +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_EC=y +CONFIG_ACPI_POWER=y +CONFIG_ACPI_SYSTEM=y +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=m +CONFIG_ACPI_SBS=m + |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 13:13:35
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv26519 Modified Files: CHANGES md5sum.lst Log Message: - updated minicom-2.3 to rc1 - updated nfs-utils to 1.1.1 - updated quagga to 0.99.9-20071018 - updated mdadm to 2.6.4 - updated heartbeat to 2.1.2 - synced gcc hardened specs with current HLFS - updated glibc to 2.5.1 - updated ipsec-tools to 0.7 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.1128 retrieving revision 1.1129 diff -u -d -r1.1128 -r1.1129 --- CHANGES 19 Sep 2007 13:01:32 -0000 1.1128 +++ CHANGES 22 Oct 2007 13:13:07 -0000 1.1129 @@ -22,6 +22,14 @@ # 1.3.4 +- updated minicom-2.3 to rc1 +- updated nfs-utils to 1.1.1 +- updated quagga to 0.99.9-20071018 +- updated mdadm to 2.6.4 +- updated heartbeat to 2.1.2 +- synced gcc hardened specs with current HLFS +- updated glibc to 2.5.1 +- updated ipsec-tools to 0.7 - updated dnsmasq to 2.40 - updated hostapd to 0.5.8 - updated httpd to 2.2.6 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.372 retrieving revision 1.373 diff -u -d -r1.372 -r1.373 --- md5sum.lst 19 Oct 2007 17:45:51 -0000 1.372 +++ md5sum.lst 22 Oct 2007 13:13:07 -0000 1.373 @@ -114,7 +114,7 @@ d541419fd7e5642952d7b48cbb40c712 src/beep-1.2.2.tar.gz 44e0514e6105ddaa235394045d9aeb0c src/bind-9.4.1-P1.tar.gz e26e2e06b6e4bf3acf1dc8688a94c0d1 src/binutils-2.17.tar.bz2 -b455001a51ca51c34ceea60b2911c89e src/binutils-patches.tar.bz2 +937cc68b7396698ecdc10408c54e3115 src/binutils-patches.tar.bz2 22327efdd5080e2b1acb6e560a04b43a src/bison-2.3.tar.gz 1cc3cefad872e937e05de5a0a2b390dd src/bluez-firmware-1.2.tar.gz cb9c2e91e71b61dfcc0491b5499a5f4c src/bluez-hcidump-1.34.tar.gz @@ -204,9 +204,9 @@ 266974c417a7b973d3e54b64f95e9536 src/fwlogwatch-1.1.tar.bz2 9d8dfd1a0b131ce4425f6dec5b436c76 src/gawk-3.1.5-segfault_fix-1.patch.bz2 5703f72d0eea1d463f735aad8222655f src/gawk-3.1.5.tar.bz2 -cf15be0649ea762885f3cb2bfc5ece2f src/gcc-3.4.6-linkonce-1.patch.bz2 -c545a48f5b3ca9344d6d6cc24f8f1182 src/gcc-3.4.6-posix-1.patch.bz2 -4a21ac777d4b5617283ce488b808da7b src/gcc-3.4.6.tar.bz2 +3d4b1d993669583157a243e68038ff27 src/gcc-4.1.2-fortify_source-1.patch.bz2 +56a6cf7b2e76d4ad18e7a0cbad24ad40 src/gcc-4.1.2-fpie-1.patch.bz2 +db303c5c74969c63b43a487ed62d4918 src/gcc-4.1.2-fstack_protector-1.patch.bz2 a4a3eb15c96030906d8494959eeda23c src/gcc-4.1.2.tar.bz2 6c6c3dbb7bf079e0bb5fbbfd3bb8a71c src/gd-2.0.35.tar.bz2 1d1b1d5c0245b1c00aff92da751e9aa1 src/gdbm-1.8.3.tar.gz @@ -216,10 +216,10 @@ 994a954a9d837bf4780a992441d4b8db src/glib-1.2.10-gcc34-1.patch.bz2 6fe30dad87c77b91b632def29dd69ef9 src/glib-1.2.10.tar.gz d76124236e4e216e8c0861341e967a76 src/glib-2.12.13.tar.bz2 -1fb29764a6a650a4d5b409dda227ac9f src/glibc-2.5.tar.bz2 -bee8514cc1b0fce06c155e6b0fad020e src/glibc-hardened.tar.bz2 -8787868ba8962d9b125997ec2f25ac01 src/glibc-libidn-2.5.tar.bz2 -aba9e0a4f7c249ed2f8a05c75a389804 src/glibc-patches.tar.bz2 +10ea72e2c4d56c6aa13dabb7c4f9b195 src/glibc-2.5.1.tar.bz2 +45338c7c17c1531b73c85ace9eaadee9 src/glibc-hardened.tar.bz2 +c9358e259a23e93aa5a0fc0478a34b60 src/glibc-libidn-2.5.1.tar.bz2 +a2ec74e909d6916829c70402ea647011 src/glibc-patches.tar.bz2 091c56e0e1cca6b09b17b69d47ef18e3 src/gmp-4.2.1.tar.bz2 8f47cfa4b375deae65aa3b993476e9e4 src/gnugk-2.2.6.tar.gz b06a141cca5cd1a55bbdd25ab833303c src/gnupg-1.4.7.tar.bz2 @@ -233,7 +233,7 @@ cd3f3eb54446be6003156158d51f4884 src/grub-0.97.tar.gz b5bac2d21840ae077e0217bc5e4845b1 src/gzip-1.3.12.tar.gz 62749c6cdf28ce31aae335092fa107df src/hdparm-6.9.tar.gz -39d7d12d2a7d5c98d1e3f8ae7977a3e6 src/heartbeat-2.0.8.tar.gz +56868ab82936b3f77deb777992c4a80d src/heartbeat-2.1.2.tar.gz 0a8097a8772d5d2de8c5539d3182b82a src/heimdal-0.7.tar.gz c7534dc040ab90218257a78488ecd378 src/hostap-driver-0.4.9.tar.gz afe041581b8f01666e353bec20917c85 src/hostap-utils-0.4.7.tar.gz @@ -255,7 +255,7 @@ f9ed8a729145ae613b3cdc518f1750e3 src/ipac-ng-1.31.tar.bz2 969832f3a42fc25b44045d73ea483f18 src/ipcalc.tar.bz2 7bc5883aadf740761fa2dd70b661e8cc src/iproute2-2.6.20-070313.tar.gz -4fb764f282dc21cf9a656c58e13dacbb src/ipsec-tools-0.6.7.tar.bz2 +c0a586924edde35264ecfe94ad1c261f src/ipsec-tools-0.7.tar.bz2 74ce3226b30cdd386630250bdc3488ef src/ipset-2.2.9a-20061009.tar.bz2 0a9209f928002e5eee9cdff8fef4d4b3 src/iptables-1.3.8.tar.bz2 377371c28ee3c21a76f7024920649ea8 src/iptraf-3.0.0.tar.gz @@ -339,12 +339,11 @@ 7e2d47fb1c3176812e8fd03572e52c92 src/man-pages-1.65.tar.bz2 18b20db6e40480a53bac2870c56fc3c4 src/mc-4.6.1.tar.gz 19d9f0b15fe68a7cae7e9faa02859c89 src/mcrypt-2.6.5.tar.bz2 -0d1d65136962cacbf7757d2672f213bd src/mdadm-2.6.2.patch.bz2 -87089d35d6a308ee3b3ebc34824e1629 src/mdadm-2.6.2.tar.bz2 +4235fc330c9d51e6e613a6eee7ebca76 src/mdadm-2.6.4.tgz 52e35228b60431ef474bbb5125ca1201 src/memtest86-3.3.tar.gz 4b80c418bc58add3e40de3be0ac6c02a src/mgetty1.1.30-Dec16.tar.gz d113a853e0ac21c49c5a1acea0daaade src/mhash-0.9.9.tar.bz2 -13933c8777839f00e3730df23599dc93 src/minicom-2.2.tar.gz +ab010843fb742c8690677cc1fb696fac src/minicom-2.3-rc1.tar.gz 9b5af852a9ca53694a09e023778b546b src/mktemp-1.5-add_tempfile-3.patch.bz2 9a35c59502a228c6ce2be025fc6e3ff2 src/mktemp-1.5.tar.gz ad0a509fd34e3b8452887d80a1d45dea src/mod_perl-2.0.2.tar.gz @@ -374,7 +373,7 @@ c2bc56b61028bce36a5cc3fe7e81058e src/netacct-mysql-0.78.tar.gz c8097875074405be31e4372682b68d7a src/netfilter-layer7-v2.13.tar.gz 6666e32c693f13283c92261c40e179b5 src/netpbm-10.26.32.tgz -df88c6fe88a26f9797e74cb2d3291a2a src/nfs-utils-1.1.0.tar.gz +407785488241f9db67b1874e3f36370e src/nfs-utils-1.1.1.tar.gz ea50419f99472200c4184a304e3831ea src/nmap-4.20.tar.bz2 c011fc1595dd125443df2d357958c85f src/noip_updater_linux_v1.4.tar.gz 5df3fae4682fa6b8b393568fd9f3c88d src/nrpe-2.6.tar.gz @@ -430,9 +429,7 @@ 90d10de70e79fe304462716e741a464e src/pwlib-v1_10_0-src.tar.gz d674ce378d7612ceffe16e93d83e0404 src/python-ldap-2.2.1.tar.gz 42e25b2a6016ff6d5ffa4f9707ac4614 src/qadsl-final-1.2.tar.gz -f448281c50007408ce92c5d8e2107abc src/quagga-0.99.7.tar.gz -6a395785195fb8c95a1030c752dda611 src/quagga-cvs20070430-as4-v07.patch.bz2 -75e6fdd5eaffde9bb5c352970a71c8ab src/quagga-ht-20050321-0.98.2-bgp-md5.patch.bz2 +0aaf544be55c2bf923b28e13742d80bc src/quagga-0.99.9-20071018.tar.gz 5a1c2f5e669aba825e0126d2f30ee622 src/quota-3.15.tar.gz 26ea468b2323e44cf827ae5f84d18dc8 src/radvd-0.7.2.tar.gz c0d208ebd4c311ceabe465b7adfef792 src/raidtools-20010914.tar.gz |
|
From: Heiko Z. <smi...@us...> - 2007-10-22 13:13:35
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv26519/scripts Modified Files: binutils gcc-4 glibc heartbeat ipsec-tools mdadm minicom Log Message: - updated minicom-2.3 to rc1 - updated nfs-utils to 1.1.1 - updated quagga to 0.99.9-20071018 - updated mdadm to 2.6.4 - updated heartbeat to 2.1.2 - synced gcc hardened specs with current HLFS - updated glibc to 2.5.1 - updated ipsec-tools to 0.7 Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.53 retrieving revision 1.54 diff -u -d -r1.53 -r1.54 --- glibc 1 May 2007 00:30:31 -0000 1.53 +++ glibc 22 Oct 2007 13:13:07 -0000 1.54 @@ -48,17 +48,19 @@ touch devil-linux-glibc-patches.done fi - if [ ! -f devil-linux-glibc-hardened.done ]; then + # don't install pt_chown + sed '/^install.*pt_chown/d' -i.orig login/Makefile + + if [ "$CONFIG_GCC_HARDENED" = "y" ]; then + if [ ! -f devil-linux-glibc-hardened.done ]; then for PATCH in $(ls ../glibc-hardened/*) do echo applying patch: $PATCH patch -i $PATCH -p1 || exit 1 done touch devil-linux-glibc-hardened.done - fi - - if [ "$CONFIG_GCC_HARDENED" = "y" ]; then - if [ ! -f .done_hardened ]; then + fi + if [ ! -f .done_hardened ]; then # all of this stuff is stolen from the HLFS book #Use PIC assembly code in the utility programs: @@ -77,28 +79,14 @@ # -fstack-protector-all in our GCC specs. nscd can compile with -fstack-protector-all, so fix that: sed 's/fstack-protector/&-all/' -i.orig nscd/Makefile - # This next command adds the stack_chk_fail_local function to libc.so so that libc.so can be compiled - # with -fstack-protector (by the hardened GCC specs): - sed 's/^$(common-objpfx)libc.so: $(elfobjdir)\/soinit.os \\/&\ - \t\t\t $(common-objpfx)debug\/stack_chk_fail_local.oS \\/' \ - -i.orig Makerules - # These next commands add -fno-stack-protector to a few places: - sed 's/^CPPFLAGS += -DHAVE_INITFINI/& -fno-stack-protector/' \ - -i.orig csu/Makefile - sed 's/^CPPFLAGS-.os +=/& -fno-stack-protector/' \ - -i.orig elf/Makefile - sed 's/^CFLAGS-rtld :=/& -fno-stack-protector/' \ - -i.orig elf/rtld-Rules - sed -e 's/^CFLAGS-init.c =/& -fno-stack-protector/' \ - -e 's/^CFLAGS-unwind.* =/& -fno-stack-protector/' \ - -i nptl/Makefile + #The ldconfig program is statically linked. The next command adds compiler options so it will not be built as PIC unnessessarily: + sed 's/CFLAGS-ldconfig.c =/& -fno-PIC -fno-PIE/' -i.orig elf/Makefile + # Add MUDFLAP_OPTIONS to the list of environment variables which are removed by libc for suid programs. # This will keep local users, including root, from disabling bounds checking on suid programs linked to libmudflap.so: sed 's/#define UNSECURE_ENVVARS.*/&\ "MUDFLAP_OPTIONS\\0" \\/' -i.orig sysdeps/generic/unsecvars.h - # Add -nonow to CC so the testsuite will have better results. When Glibc's build uses -Wl,-z,now it will supersede this -nonow option: - sed 's/^CC =.*/& -nonow/' -i.orig config.make touch .done_hardened fi fi @@ -111,8 +99,42 @@ ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --libexecdir=/usr/lib/glibc \ --enable-kernel=2.6.0 --enable-bind-now --enable-stackguard-randomization || exit 1 + + if [ "$CONFIG_GCC_HARDENED" = "y" ]; then + # The Glibc libraries can not be built with -fstack-protector[-all], -D_FORTIFY_SOURCE, or -Wl,-z,now. + echo 'build-programs=no +CC = gcc -fPIC -fno-stack-protector -U_FORTIFY_SOURCE -nonow -nopie +CXX = g++ -fPIC -fno-stack-protector -U_FORTIFY_SOURCE -nonow -nopie +' > configparms + make $PMAKE || exit 1 + rm -v configparms + # Glibc links startfiles explicitly. The following will modify the link command used, so that the programs + # will be linked to the sharable startfiles, and explicitly use -fPIE. The sln is another statically + #linked program, so options are added so it is not compiled as PIC: + echo 'CC = gcc -fPIE +CXX = g++ -fPIE +CFLAGS-sln.c += -fno-PIC -fno-PIE ++link = $(CC) -nostdlib -nostartfiles -fPIE -pie -o $@ \ + $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) $(LDFLAGS-$(@F)) \ + -Wl,-z,combreloc -Wl,-z,relro -Wl,-z,now $(hashstyle-LDFLAGS) \ + $(addprefix $(csu-objpfx),S$(start-installed-name)) \ + $(+preinit) `$(CC) --print-file-name=crtbeginS.o` \ + $(filter-out $(addprefix $(csu-objpfx),start.o \ + $(start-installed-name))\ + $(+preinit) $(link-extra-libs) \ + $(common-objpfx)libc% $(+postinit),$^) \ + $(link-extra-libs) $(link-libc) `$(CC) --print-file-name=crtendS.o` $(+postinit) +' > configparms + make $PMAKE || exit 1 + + rm -v configparms +echo 'CC = gcc -fPIC -fno-stack-protector -U_FORTIFY_SOURCE -nonow -nopie +CXX = g++ -fPIC -fno-stack-protector -U_FORTIFY_SOURCE -nonow -nopie +' > configparms + else + make $PMAKE || exit 1 + fi - make $PMAKE || exit 1 strip_debug || exit 1 # we have to install this immediately, because this is a library and could be needed by other sources @@ -120,13 +142,13 @@ make install install_root=$TMPDIR || exit 1 # ok we need to do this a little tricky, otherwise all hell breaks loose - cd $TMPDIR || exit 1 + pushd $TMPDIR || exit 1 mkdir -p $TMPDIR/etc || exit 1 touch $TMPDIR/etc/ld.so.conf tar -cf glibc.tar * || exit 1 tar -C / -xf glibc.tar || exit 1 - cd .. || exit 1 - + popd || exit 1 + rm -rf $TMPDIR || exit 1 ;; Index: minicom =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/minicom,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- minicom 19 Apr 2007 15:39:21 -0000 1.8 +++ minicom 22 Oct 2007 13:13:07 -0000 1.9 @@ -39,8 +39,6 @@ rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 make install DESTDIR=$TMPDIR || exit 1 - mkdir -p $TMPDIR/usr/share/man || exit 1 - mv $TMPDIR/usr/man/* $TMPDIR/usr/share/man/ || exit 1 copy_files $TMPDIR/usr $CDDIR || exit 1 rm -rf $TMPDIR || exit 1 fi Index: ipsec-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ipsec-tools,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ipsec-tools 31 Jul 2007 12:23:53 -0000 1.9 +++ ipsec-tools 22 Oct 2007 13:13:07 -0000 1.10 @@ -37,7 +37,8 @@ fi ./bootstrap CC="gcc -D_FORTIFY_SOURCE=0" ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc/ipsec-tools --with-kernel-headers=/usr/include \ - --enable-frag --enable-stats --enable-dpd --enable-natt --with-libpam --with-libradius=$LIBRADIUSDIR $GSSAPI --enable-hybrid --enable-adminport || exit 1 + --enable-frag --enable-stats --enable-dpd --enable-natt --with-libpam --with-libradius=$LIBRADIUSDIR $GSSAPI --enable-hybrid \ + --enable-adminport --disable-security-context || exit 1 make || exit 1 make install || exit 1 strip_debug Index: heartbeat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heartbeat,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- heartbeat 19 Apr 2007 15:39:21 -0000 1.11 +++ heartbeat 22 Oct 2007 13:13:07 -0000 1.12 @@ -32,7 +32,9 @@ SNMP="--disable-snmp" fi - CFLAGS="-D_FORTIFY_SOURCE=0" ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc ${SNMP} || exit 1 + #CFLAGS="-D_FORTIFY_SOURCE=0" + #CC="gcc -nopie -fno-stack-protector" + CFLAGS="-fno-stack-protector -D_FORTIFY_SOURCE=0" ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc ${SNMP} || exit 1 make $PMAKE all || exit 1 strip_debug Index: gcc-4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gcc-4 19 Apr 2007 15:39:21 -0000 1.2 +++ gcc-4 22 Oct 2007 13:13:07 -0000 1.3 @@ -36,100 +36,34 @@ touch gcc-patches.done fi - sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in - #replace_str gcc/Makefile.in "CFLAGS = -g" "CFLAGS = -g -D_LIBC_PROVIDES_SSP_" - #replace_str gcc/Makefile.in "BOOT_CFLAGS = -g -O2" "CFLAGS=-g -O2 -D_LIBC_PROVIDES_SSP_" - sed -i 's/^XCFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in - sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in - sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in - if [ "$CONFIG_GCC_HARDENED" = "y" ]; then # and now make sure we use SSP and other stuff when compiling # thanks to Robert Connolly and the HLFS project + if [ ! -f gcc-patches-fortify_source.done ]; then + echo "applying gcc fortify_source patch" + bzcat $DL_DIR/src/gcc-4*-fortify_source-*.patch.bz2 | patch -p1 || exit 1 + touch gcc-patches-fortify_source.done + fi + if [ ! -f gcc-patches-fstack_protector.done ]; then + echo "applying gcc pie patch" + bzcat $DL_DIR/src/gcc-4*-fstack_protector-*.patch.bz2 | patch -p1 || exit 1 + touch gcc-patches-fstack_protector.done + fi + if [ ! -f gcc-patches-pie.done ]; then + echo "applying gcc pie patch" + bzcat $DL_DIR/src/gcc-4*-fpie-*.patch.bz2 | patch -p1 || exit 1 + touch gcc-patches-pie.done + fi - #The following file redefines GCC's default behaviour to add various options: -echo '#ifndef HARDENED_SPECS_H -#define HARDENED_SPECS_H - -#if defined(__i386__) && defined(__linux__) && defined(__ELF__) \ - && defined(HAVE_LD_PIE) && defined(TARGET_LIBC_PROVIDES_SSP) - -#undef CPP_SPEC -#define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT} \ - %{D_FORTIFY_SOURCE*|D_LIBC_REENTRANT:;:-D_FORTIFY_SOURCE=2}" - -#undef CC1_SPEC -#define CC1_SPEC "%(cc1_cpu) %{profile:-p} \ - %{D__KERNEL__|fpic|fPIC|fpie|fPIE|fno-pic|fno-PIC \ - :;shared|nostdlib|nostartfiles:-fPIC} \ - %{static|D__KERNEL__|fpic|fPIC|fpie|fPIE|fno-pie|fno-PIE| \ - shared|nostdlib|nostartfiles:;:-fPIE} \ - %{D__KERNEL__|fno-stack-protector|fstack-protector| \ - fstack-protector-all:;D_LIBC_REENTRANT:-fstack-protector;: \ - -fstack-protector-all} %{D_FORTIFY_SOURCE*|D_LIBC_REENTRANT|O*:;:-O}" - -#undef CC1PLUS_SPEC -#define CC1PLUS_SPEC \ - "%{D__KERNEL__|fpic|fPIC|fpie|fPIE|fno-pic|fno-PIC \ - :;shared|nostdlib|nostartfiles:-fPIC} \ - %{static|D__KERNEL__|fpic|fPIC|fpie|fPIE|fno-pie|fno-PIE| \ - shared|nostdlib|nostartfiles:;:-fPIE} \ - %{D__KERNEL__|fno-stack-protector|fstack-protector| \ - fstack-protector-all:;D_LIBC_REENTRANT:-fstack-protector;: \ - -fstack-protector-all} %{D_FORTIFY_SOURCE*|D_LIBC_REENTRANT|O*:;:-O}" - -#undef ENDFILE_SPEC -#define ENDFILE_SPEC "%{ffast-math|funsafe-math-optimizations: \ - crtfastmath.o%s} \ - %{static|nopie:crtend.o%s;:crtendS.o%s} crtn.o%s" - -#undef STARTFILE_SPEC -#define STARTFILE_SPEC "%{shared:;pg|p|profile:gcrt1.o%s; \ - static|nopie:crt1.o%s;:Scrt1.o%s} crti.o%s \ - %{static:crtbeginT.o%s;nopie:crtbegin.o%s;:crtbeginS.o%s}" - -#undef LINK_PIE_SPEC -#define LINK_PIE_SPEC "%{pie:-pie} %{!static:%{!Bstatic: \ - %{nonow:-z lazy;:-z now} %{norelro:-z norelro;:-z relro} \ - %{nocombreloc:-z nocombreloc;:-z combreloc} \ - %{shared|Bshareable|i|r|pie|nopie:;:-pie}}}" - -#else /* __i386__ && __linux__ && __ELF__ && HAVE_LD_PIE */ -#error "You are using an unsupported system. This header can not be used." -#endif /* __i386__ && __linux__ && __ELF__ && HAVE_LD_PIE */ -#endif /* HARDENED_SPECS_H */' > gcc/hardened-specs.h - - #This command includes the hardened-specs header in the right place: - cp -vi gcc/gcc.c{,.orig} - sed '0,/.*config.h can define.*/s//#include "hardened-specs.h"\n&/' \ - gcc/gcc.c.orig > gcc/gcc.c - - # Don't build libssp.[a,so] with -fstack-protector[-all]. This library - # won't be used but will be built and installed: - cp -vi libssp/Makefile.in{,.orig} - sed 's/^AM_CFLAGS =/& -fno-stack-protector/' \ - libssp/Makefile.in.orig > libssp/Makefile.in - - # Don't build libgcc.[a,so] with -fstack-protector[-all]. libgcc.a is often linked into - # other static libraries and they will fail to resolve __stack_chk symbols: - cp -vi gcc/Makefile.in{,.orig3} - sed 's/^LIBGCC2_CFLAGS =/& -fno-stack-protector/' \ - gcc/Makefile.in.orig3 > gcc/Makefile.in - - # Don't build crtbegin[,S,T].o or crtend[,S].o files with -fstack-protector[-all]. These libraries should be - # devoid of dependencies (including the depenency to libc for SSP functions): - cp -vi gcc/Makefile.in{,.orig4} - sed 's/^CRTSTUFF_CFLAGS =/& -fno-stack-protector/' \ - gcc/Makefile.in.orig4 > gcc/Makefile.in - - sed 's/violation_mode = viol_nop/violation_mode = viol_abort/' \ - -i.orig libmudflap/mf-runtime.c - - # - EXTRAOPTIONS="$EXTRAOPTIONS gcc_cv_libc_provides_ssp=yes" + #EXTRAOPTIONS="$EXTRAOPTIONS gcc_cv_libc_provides_ssp=yes" CONFIG_EXTRA="$CONFIG_EXTRA --disable-werror" fi + # This version of GCC has a small bug/typo with RPATH_ENVVAR value for bfd and opcode. + # Use the following commands to fix this bug, so that .--enable-shared. will work: + cp -v Makefile.in{,.orig} + sed -e 's@/.:$$r@/.libs:$$r@' -e 's@/.:@/.libs:@' Makefile.in.orig > Makefile.in + rm -rf ../gcc4-build mkdir ../gcc4-build || exit 1 cd ../gcc4-build || exit 1 @@ -142,7 +76,9 @@ # install it, so we use the same version everywhere make install || exit 1 - + + # Install the libiberty header file that is needed by some packages + install -v -m0644 ../gcc-4*/include/libiberty.h /usr/include ;; Index: mdadm =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/mdadm,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- mdadm 6 Jul 2007 04:19:17 -0000 1.11 +++ mdadm 22 Oct 2007 13:13:07 -0000 1.12 @@ -27,11 +27,11 @@ build ) if [ "$CONFIG_MDADM" = "y" ]; then if [ ! -f devil-linux-mdadm-patch.done ]; then - bzcat $DL_DIR/src/mdadm-*.patch.bz2 | patch -p1 || exit 1 + #bzcat $DL_DIR/src/mdadm-*.patch.bz2 | patch -p1 || exit 1 touch devil-linux-mdadm-patch.done fi - make $PMAKE all || exit 1 + make CC="gcc -D_FORTIFY_SOURCE=0" $PMAKE all || exit 1 strip_debug fi ;; Index: binutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/binutils,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- binutils 23 Apr 2007 20:17:58 -0000 1.16 +++ binutils 22 Oct 2007 13:13:07 -0000 1.17 @@ -47,7 +47,7 @@ #make headers -C bfd || exit 1 - CC="gcc -D_FORTIFY_SOURCE=0" $WORKDIR/binutils-2*/configure --prefix=/usr --localstatedir=/var --enable-shared || exit 1 + CC="gcc -D_FORTIFY_SOURCE=0" $WORKDIR/binutils-2*/configure --prefix=/usr --localstatedir=/var --enable-shared --disable-werror || exit 1 make tooldir=/usr all || exit 1 strip_debug |
|
From: Heiko Z. <smi...@us...> - 2007-10-20 12:46:13
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17645 Modified Files: Tag: rel-1-2-patches CHANGES md5sum.lst Log Message: - updated cracklib to 2.8.12 - updated dar to 2.3.6 - updated db to 4.6.21 - updated freetype to 2.3.5 - updated glib to 2.14.2 - updated glibc to 2.3.6 - updated heartbeat to 2.1.2 - updated l7-protocols to 2007-10-10 - updated libpng to 1.2.22 - updated libxslt to 1.1.22 - updated mdadm to 2.6.4 - updated minicom-2.3 to rc1 - updated nasm to 0.99.05 - updated netfilter-layer7 to v2.14 - updated nfs-utils to 1.1.1 - updated php to 5.2.4 - updated sg3_utils to 1.25 - updated shorewall-common to 4.0.4 - updated shorewall-perl to 4.0.4 - updated shorewall-shell to 4.0.4 - updated squidGuard to 1.2.1 - updated sudo to 1.6.9p6 - updated syslinux to 3.52 - updated sysstat to 8.0.1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.807.2.329 retrieving revision 1.807.2.330 diff -u -d -r1.807.2.329 -r1.807.2.330 --- CHANGES 13 Oct 2007 22:11:37 -0000 1.807.2.329 +++ CHANGES 20 Oct 2007 12:46:08 -0000 1.807.2.330 @@ -22,6 +22,30 @@ # 1.2.14 +- updated cracklib to 2.8.12 +- updated dar to 2.3.6 +- updated db to 4.6.21 +- updated freetype to 2.3.5 +- updated glib to 2.14.2 +- updated glibc to 2.3.6 +- updated heartbeat to 2.1.2 +- updated l7-protocols to 2007-10-10 +- updated libpng to 1.2.22 +- updated libxslt to 1.1.22 +- updated mdadm to 2.6.4 +- updated minicom-2.3 to rc1 +- updated nasm to 0.99.05 +- updated netfilter-layer7 to v2.14 +- updated nfs-utils to 1.1.1 +- updated php to 5.2.4 +- updated sg3_utils to 1.25 +- updated shorewall-common to 4.0.4 +- updated shorewall-perl to 4.0.4 +- updated shorewall-shell to 4.0.4 +- updated squidGuard to 1.2.1 +- updated sudo to 1.6.9p6 +- updated syslinux to 3.52 +- updated sysstat to 8.0.1 - updated vmware tools to vmware-server 1.04 version - updated dnsmasq to 2.40 - updated grsecurity to 2.1.11-2.4.35.1-200708211800 Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.102.2.221 retrieving revision 1.102.2.222 diff -u -d -r1.102.2.221 -r1.102.2.222 --- md5sum.lst 13 Oct 2007 22:11:38 -0000 1.102.2.221 +++ md5sum.lst 20 Oct 2007 12:46:08 -0000 1.102.2.222 @@ -136,7 +136,7 @@ f2e830491b5932ea7a729f6368548585 src/coreutils-patches.tar.bz2 e02859af1bbbbd73fcbf757acb57e0a4 src/cpio-2.5.tar.gz d287d1ad9317443063aff1098f7bc4f4 src/cpqarrayd-2.2.tar.gz -555f7832b63ebc7fb70b0373500c2358 src/cracklib-2.8.10.tar.gz +580346fa1012f9d9769192f49d3801fa src/cracklib-2.8.12.tar.gz d18e670e5df560a8745e1b4dede8f84f src/cracklib-words.gz 5c356f45bde4233a9b2a5ae78ae4e9e1 src/cramfs-1.1.tar.gz c3331c0509e5f1e1ce26502d8be0c70b src/cron-4.1.tar.bz2 @@ -150,7 +150,7 @@ 0b4c4417aa149c4523a071647ad6778f src/daemontools-0.76.tar.gz aa619607198f37a528dbb65e4a503beb src/dansguardian-2.8.0.6.source.tar.gz b6f5e1a00c7311f99632ed300ce26f5f src/dante-1.1.18.tar.gz -6743849db51958e751519c31d6494ce7 src/dar-2.3.2.tar.gz +de290b9d4ff93838be0779a6daa66fff src/dar-2.3.6.tar.gz cbc77517c9278cdb47613ce8cb55779f src/db-4.2.52.tar.gz e393cbf386831825ae8814d9341feadd src/ddup-3.0.1.tar.bz2 d5ece24fb8c24f353c3c93218f8fb24b src/debianutils_2.8.4.tar.gz @@ -209,10 +209,10 @@ 81f76edf8556205d8713e7746d6ab9fa src/gifsicle-1.44.tar.gz e1a0fd923345977412375884ac9e33c5 src/giftext-segfault.patch.bz2 6fe30dad87c77b91b632def29dd69ef9 src/glib-1.2.10.tar.gz -d76124236e4e216e8c0861341e967a76 src/glib-2.12.13.tar.bz2 -ede969aad568f48083e413384f20753c src/glibc-2.3.2.tar.bz2 -894b8969cfbdf787c73e139782167607 src/glibc-linuxthreads-2.3.2.tar.bz2 -60bd8402892f120f77727c0ef8f6ffda src/glibc-patches.tar.bz2 +fca5d26c8efea4e6e547c81c801bf67c src/glib-2.14.2.tar.bz2 +bfdce99f82d6dbcb64b7f11c05d6bc96 src/glibc-2.3.6.tar.bz2 +d4eeda37472666a15cc1f407e9c987a9 src/glibc-linuxthreads-2.3.6.tar.bz2 +8695bdf23d10f86f0928e8d93cb61f6a src/glibc-patches.tar.bz2 091c56e0e1cca6b09b17b69d47ef18e3 src/gmp-4.2.1.tar.bz2 8f47cfa4b375deae65aa3b993476e9e4 src/gnugk-2.2.6.tar.gz b06a141cca5cd1a55bbdd25ab833303c src/gnupg-1.4.7.tar.bz2 @@ -227,7 +227,7 @@ cd3f3eb54446be6003156158d51f4884 src/grub-0.97.tar.gz 7cf923b24b718c418e85a283b2260e14 src/gzip-1.3.9.tar.gz 62749c6cdf28ce31aae335092fa107df src/hdparm-6.9.tar.gz -39d7d12d2a7d5c98d1e3f8ae7977a3e6 src/heartbeat-2.0.8.tar.gz +56868ab82936b3f77deb777992c4a80d src/heartbeat-2.1.2.tar.gz c7534dc040ab90218257a78488ecd378 src/hostap-driver-0.4.9.tar.gz afe041581b8f01666e353bec20917c85 src/hostap-utils-0.4.7.tar.gz 40416b48cae9c78e5a2452caf214aff3 src/hostapd-0.5.8.tar.gz @@ -271,7 +271,7 @@ ff14f0c556fd5357e0ed872a25d711e0 src/krb5-1.5.2.tar.gz c5dba6b80f583070fe9e6ed6e0c2162e src/l2tpd-0.69.tar.gz 571f031068ea7861282f0525d67a9aa0 src/l2tpd-patches.tgz -d007dd322e174a5c0ec722061ba8a57b src/l7-protocols-2007-07-27.tar.gz +604cb6fc811c7fe80bdb2221db07bfe8 src/l7-protocols-2007-10-10.tar.gz b7fb1c24b940482cd730cf212d1b5062 src/lcd4linux-0.10.0.tar.gz a9f072ccefa0d315b325f3e9cdbd4b97 src/less-394.tar.gz 33ec17a87a7e96791798c339bee2fdbd src/lftp-3.5.14.tar.bz2 @@ -292,14 +292,14 @@ 40ee3ec89030f0d6dfdb2cf6100e6685 src/libosip2-2.2.2.tar.gz 1e700ba0ea0670e398a7102ff6adb590 src/libpam-pgsql-0.6.1.tar.bz2 77bc1f1de0de8488c7cb28e4753b9603 src/libpcap-0.9.7.tar.gz -02aac1f1aecc096f6045676e977ec641 src/libpng-1.2.19.tar.bz2 +e50208ad684a5822c74b8a260962a4d4 src/libpng-1.2.22.tar.bz2 6b7b6e6df84d4afb469ccc66d04fc24d src/libsafe-2.0-16.tgz 3c37ef02a3aa248e30f4bf1613e3f597 src/libstdc++-compat.tar.bz2 8e0ac9797b62ba4dcc8a2fb7936412b0 src/libtool-1.5.22.tar.gz 76865bc1bed90ecb5992a1edcc4d6c15 src/libungif-4.1.4.tar.bz2 caf182cbc7565dac0fd72155919672e6 src/libusb-0.1.12.tar.gz f5806f5059ef7bd4d3fcf36cf116d1ef src/libxml2-2.6.27.tar.gz -622e5843167593c8ea39bf86c66b8fcf src/libxslt-1.1.19.tar.gz +f2061dddea77257488601e20e2f3b5a7 src/libxslt-1.1.22.tar.bz2 d5b561190cbe0968d50e09e0031edb79 src/lilo-22.5.9.tar.gz e6d8a38a304d76c7074a4da12dacc15f src/linux-2.4.23-protector-1.patch.bz2 146757efc4dc3d66332415b8d29e6c39 src/linux-2.4.31-mppe-mppc-1.3.patch.gz @@ -325,11 +325,11 @@ 7e2d47fb1c3176812e8fd03572e52c92 src/man-pages-1.65.tar.bz2 18b20db6e40480a53bac2870c56fc3c4 src/mc-4.6.1.tar.gz 19d9f0b15fe68a7cae7e9faa02859c89 src/mcrypt-2.6.5.tar.bz2 -2d3950028253a856f065763e5bd78b1c src/mdadm-2.6.3.tar.bz2 +4235fc330c9d51e6e613a6eee7ebca76 src/mdadm-2.6.4.tgz 52e35228b60431ef474bbb5125ca1201 src/memtest86-3.3.tar.gz 4b80c418bc58add3e40de3be0ac6c02a src/mgetty1.1.30-Dec16.tar.gz d113a853e0ac21c49c5a1acea0daaade src/mhash-0.9.9.tar.bz2 -13933c8777839f00e3730df23599dc93 src/minicom-2.2.tar.gz +ab010843fb742c8690677cc1fb696fac src/minicom-2.3-rc1.tar.gz 9b5af852a9ca53694a09e023778b546b src/mktemp-1.5-add_tempfile-3.patch.bz2 9a35c59502a228c6ce2be025fc6e3ff2 src/mktemp-1.5.tar.gz b40e2adf67c6be15a0041af1c67b6997 src/mod_perl-2.0.3.tar.gz @@ -348,7 +348,7 @@ 359afddaf6a8e3228a5130b60bed0f67 src/nagios-plugins-1.4.5.tar.gz a361b4ab34ce04e0a15ea4fbc8e4a414 src/nail-10.7.tar.bz2 f2b3efbf1cf356d736740d531b6b22c4 src/nano-1.2.5.tar.gz -f1f36c02ee9bf259d97c8422e815b908 src/nasm-0.99.02.tar.bz2 +49b904a7ef01fdde4261b4724cf7695e src/nasm-0.99.05.tar.bz2 e4697a859fee58f5020773aff76f9dcf src/nbd-2.4.32.tgz 384b7f01d725c89ccd30692628b3ac1b src/ncftp-3.2.0-src.tar.bz2 b6593abe1089d6aab1551c105c9300e3 src/ncurses-5.6.tar.gz @@ -358,7 +358,7 @@ a383c30f684739dfeea4e72436061533 src/net-tools-fddi.diff.bz2 71091a5dd65eac16ca841ce06e5de7fa src/net-tools_1.60-9-dl.diff.bz2 c2bc56b61028bce36a5cc3fe7e81058e src/netacct-mysql-0.78.tar.gz -c8097875074405be31e4372682b68d7a src/netfilter-layer7-v2.13.tar.gz +35bd48c3b8d6d7d1af09bf7ffc7a158b src/netfilter-layer7-v2.14.tar.gz fdf3c257c99287b01d95632cb2597a58 src/netfilter-layer7-v2.6-grsec.patch.bz2 d8eefe1e7cc7f02d7f0d41a51432f8f2 src/netpbm-10.26.42.tgz 73981058e49b0b4ce2a15e21960529f5 src/nfs-utils-1.0.9.tar.gz @@ -394,7 +394,7 @@ 08b48bf97ff84a9dea07d6be518f0046 src/pcre-7.3.tar.bz2 9452d398f0fcd4e5cd7ef6628bc78c6e src/pcwd-1.42.tar.gz a377c0c67ab43fd96eeec29ce19e8382 src/perl-5.8.8.tar.bz2 -eb50b751c8e1ced05bd012d5a0e4dec3 src/php-5.2.3.tar.bz2 +55c97a671fdabf462cc7a82971a656d2 src/php-5.2.4.tar.bz2 a7e4f60a6657dbc434334deb594cc242 src/pkgconfig-0.15.0.tar.gz 734b375abdcc6bf70541d0bef8147449 src/popt-1.6.4.tar.gz 082c55e473581d2ff887c6e0912b6554 src/portmap_5-1.diff.gz @@ -442,28 +442,27 @@ 7a1cbbbb3341287308e140bd4834c3ba src/sed-4.1.5.tar.gz 31031225d483c0d5ac43e8eb5d0428e0 src/ser-0.9.6_src.tar.gz c4867d72c41564318e0107745eb7a0f2 src/setserial-2.17.tar.gz -8ca3f643057855bf98b9487f96ea486c src/sg3_utils-1.24.tgz +16022367e17f0a7da8c53822beeb5026 src/sg3_utils-1.25.tar.bz2 bc5972a195290533b4c0576276056ed9 src/shadow-4.0.17.tar.bz2 016f49d71bc32eee2b5d11fc1600cfbe src/shfs-0.35.tar.gz -34c462dd278592a9b4a98c7ebee5cc9b src/shorewall-common-4.0.3.tar.bz2 -b747981a41ec361e5d90a018e7ebf8c3 src/shorewall-perl-4.0.3.tar.bz2 -ac399971abf4f3d10dd84adcefd12146 src/shorewall-shell-4.0.3.tar.bz2 +defb09a8b2a7b543b60e2fa065e983d3 src/shorewall-common-4.0.4.tar.bz2 +b8038a66801be3360ff893488efc3cf2 src/shorewall-perl-4.0.4.tar.bz2 +53c8ee43c9a61b0d03c460a8d14177b6 src/shorewall-shell-4.0.4.tar.bz2 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 -28c9a2dd535b0316bbaae8e37ef4e5fa src/squidguard-1.2.0.tar.gz +b6700f59c48fde5ad4d12f871acba93a src/squidGuard-1.2.1.tar.gz 617b83cda02eee31562c467ac7289580 src/squidguard-blacklist.tar.bz2 -3f64c431a2585e04b9a2e1e958a8b68c src/squidguard_1.2.0-5.diff.gz 77f66d09aa82981bb6d65fa19a2c1ba9 src/strace-4.5.16.tar.bz2 cb6cd21d7ba8717e8c6336b1bd6817cd src/strongswan-2.8.6.tar.bz2 cf9940395d3503018f721c962528d2ec src/stunnel-4.20.tar.gz -2db485a444dc6b26a3712be0dbf343f6 src/sudo-1.6.9p5.tar.gz +1f262526f321af388b37e05ee57bb2c7 src/sudo-1.6.9p6.tar.gz 4a0bae63e3713e89b26db7209b6a7e05 src/swig-1.3.31.tar.gz f587720988bc1670071f31d3694ca0fb src/sysklogd-1.4.1.tar.bz2 -b0e5a03f0a8443a10e3e0f15f24e328a src/syslinux-3.51.tar.bz2 +e66e2b3fd7a17977086f65588b324607 src/syslinux-3.52.tar.bz2 ffbad7e8e6dcbe385820b8ffba23b622 src/syslog-ng-1.6.8.tar.gz -72ace90067412b58aa3e397690409dfb src/sysstat-7.1.6.tar.gz +487ee172b2c029ec52ebfd2b803bf8fe src/sysstat-8.0.1.tar.bz2 7d5d61c026122ab791ac04c8a84db967 src/sysvinit-2.86.tar.gz 70170208d7c1bb9ab40120579434b6a3 src/tar-1.18.tar.bz2 eec4e5d6cda55464970a3157eb3bc534 src/tcp_wrappers_7.6.diff.gz |
|
From: Heiko Z. <smi...@us...> - 2007-10-20 12:46:13
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv17645/scripts Modified Files: Tag: rel-1-2-patches gcc glibc minicom open-vm-tools sg3_utils squidguard Log Message: - updated cracklib to 2.8.12 - updated dar to 2.3.6 - updated db to 4.6.21 - updated freetype to 2.3.5 - updated glib to 2.14.2 - updated glibc to 2.3.6 - updated heartbeat to 2.1.2 - updated l7-protocols to 2007-10-10 - updated libpng to 1.2.22 - updated libxslt to 1.1.22 - updated mdadm to 2.6.4 - updated minicom-2.3 to rc1 - updated nasm to 0.99.05 - updated netfilter-layer7 to v2.14 - updated nfs-utils to 1.1.1 - updated php to 5.2.4 - updated sg3_utils to 1.25 - updated shorewall-common to 4.0.4 - updated shorewall-perl to 4.0.4 - updated shorewall-shell to 4.0.4 - updated squidGuard to 1.2.1 - updated sudo to 1.6.9p6 - updated syslinux to 3.52 - updated sysstat to 8.0.1 Index: open-vm-tools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Attic/open-vm-tools,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -d -r1.1.2.1 -r1.1.2.2 --- open-vm-tools 13 Oct 2007 22:03:58 -0000 1.1.2.1 +++ open-vm-tools 20 Oct 2007 12:46:08 -0000 1.1.2.2 @@ -28,8 +28,9 @@ build ) if [ "$CONFIG_OPEN_VM_TOOLS" = "y" ]; then ./configure --prefix=/usr --disable-multimon --without-x || exit 1 - make LDFLAGS=-liconv all || exit 1 - #make all || exit 1 + #make LDFLAGS=-liconv all || exit 1 + make all || exit 1 + echo "DONE" exit 1 mkdir -p /lib/modules/$KERNELVERSION || exit 1 Index: gcc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Attic/gcc,v retrieving revision 1.22 retrieving revision 1.22.2.1 diff -u -d -r1.22 -r1.22.2.1 --- gcc 8 Feb 2004 15:12:16 -0000 1.22 +++ gcc 20 Oct 2007 12:46:08 -0000 1.22.2.1 @@ -61,7 +61,7 @@ fi rm -rf ../gcc-build - mkdir ../gcc-build || exit 1 + mkdir ../gcc-build || exit 1 cd ../gcc-build || exit 1 ../gcc-3*/configure --prefix=/usr --localstatedir=/var --enable-shared --enable-CONFIG_SHELL=/bin/bash \ --enable-threads=posix --with-slibdir=/lib --enable-__cxa_atexit --enable-clocale=gnu \ @@ -75,9 +75,7 @@ if [ "$CONFIG_GCC_ET_DYN" = "y" ]; then pushd $(find_src_dir et_dyn) > /dev/null cd linux || exit 1 - GLIBC=$(find_src_dir glibc) - GLIBC=${GLIBC##*/} - cp $GLIBC/*.S . || exit 1 + cp glibc-2.3.2/*.S . || exit 1 make || exit 1 GCCSPECDIR=$(dirname $(gcc --print-libgcc-file-name)) cp crt1S.o $GCCSPECDIR || exit 1 @@ -86,7 +84,7 @@ GCCVER=${GCCSPECDIR##*/} test ! -f $GCCSPECDIR/specs.orig && cp $GCCSPECDIR/specs $GCCSPECDIR/specs.orig echo $GCCSPECDIR/ - bzcat $DL_DIR/src/gcc-$GCCVER-et_dyn-specs.bz2 > $GCCSPECDIR/specs.et_dyn || exit 1 + bzcat $DL_DIR/src/gcc-3*-et_dyn-specs.bz2 > $GCCSPECDIR/specs.et_dyn || exit 1 ln -sf specs.orig $GCCSPECDIR/specs || exit 1 ln -sf specs.et_dyn $GCCSPECDIR/specs || exit 1 fi Index: minicom =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/minicom,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- minicom 11 Jan 2004 14:43:04 -0000 1.5 +++ minicom 20 Oct 2007 12:46:08 -0000 1.5.2.1 @@ -40,8 +40,6 @@ mkdir -p $WORKDIR/tmp || exit 1 make install DESTDIR=$WORKDIR/tmp || exit 1 mkdir -p $WORKDIR/tmp/usr/share/man || exit 1 - mv $WORKDIR/tmp/usr/man/* $WORKDIR/tmp/usr/share/man/ || exit 1 - copy_files $WORKDIR/tmp/usr $CDDIR || exit 1 rm -rf $WORKDIR/tmp || exit 1 fi ;; Index: sg3_utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/sg3_utils,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- sg3_utils 11 Jan 2004 14:43:05 -0000 1.9 +++ sg3_utils 20 Oct 2007 12:46:08 -0000 1.9.2.1 @@ -27,22 +27,22 @@ case $1 in build ) if [ "$CONFIG_SG3_UTILS" = "y" ]; then - disable_et_dyn - make $PMAKE all || exit 1 - strip_debug + ./configure --prefix=/usr || exit 1 + make $PMAKE all || exit 1 + strip_debug fi ;; install ) if [ "$CONFIG_SG3_UTILS" = "y" ]; then - rm -rf $WORKDIR/tmp || exit 1 - mkdir -p $WORKDIR/tmp/usr/man/man8 || exit 1 - make install DESTDIR=$WORKDIR/tmp PREFIX=/usr || exit 1 + rm -rf $TMPDIR || exit 1 + mkdir -p $TMPDIR/usr || exit 1 + make install DESTDIR=$TMPDIR || exit 1 - copy_docs $WORKDIR/tmp - copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 + copy_docs $TMPDIR + copy_files $TMPDIR/usr $CDDIR/ || exit 1 - rm -rf $WORKDIR/tmp || exit 1 + rm -rf $TMPDIR || exit 1 fi ;; Index: squidguard =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/squidguard,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -u -d -r1.2.2.1 -r1.2.2.2 --- squidguard 6 Sep 2004 14:40:32 -0000 1.2.2.1 +++ squidguard 20 Oct 2007 12:46:08 -0000 1.2.2.2 @@ -25,11 +25,13 @@ MYNAME=SQUIDGUARD +cd $(find_src_dir squidGuard) + case $1 in build ) if [ "$CONFIG_SQUIDGUARD" = "y" ]; then if [ ! -e .done_devil_patch ]; then - zcat $DL_DIR/src/squidguard_1*diff.gz | patch -p1 || exit 1 + #zcat $DL_DIR/src/squidguard_1*diff.gz | patch -p1 || exit 1 touch .done_devil_patch fi ./configure --verbose --prefix=/usr --with-sg-config=/etc/squidguard.conf --with-sg-logdir=/var/log --with-sg-dbhome=/var/lib/squidguard || exit 1 Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.31.2.3 retrieving revision 1.31.2.4 diff -u -d -r1.31.2.3 -r1.31.2.4 --- glibc 9 Aug 2007 12:57:42 -0000 1.31.2.3 +++ glibc 20 Oct 2007 12:46:08 -0000 1.31.2.4 @@ -49,28 +49,18 @@ rm -rf ../glibc-build mkdir ../glibc-build || exit 1 cd ../glibc-build || exit 1 - # unfortunately we can only go as high as the host kernel version - - #KVER_RUN=$(cat /proc/sys/kernel/osrelease) - #if [ "$KERNELVERSION" \> "$KVER_RUN" ]; then - # KVER=$KVER_RUN - #else - # KVER=$KERNELVERSION - #fi # set the minimum kernel level, so our remote updates won't fail KVER=2.4.22 - ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --libexecdir=/usr/bin --enable-kernel=$KVER --without-gd || exit 1 + ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --enable-kernel=$KVER --without-gd || exit 1 make $PMAKE || exit 1 - #make || exit 1 strip_debug || exit 1 - # we have to install this immediately, because this is a library and could be needed by other sources - make install || exit 1 - #make localedata/install-locales || exit 1 - ln -sf libdl.so.2 /lib/libdl.so || exit 1 + # we have to install this immediately, because this is a library and will be needed by other sources + + make install || exit 1 ;; install ) |
|
From: Serge L. <sma...@us...> - 2007-10-19 17:46:02
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv21390 Modified Files: md5sum.lst Log Message: -- updated kernel and unionfs Index: md5sum.lst =================================================================== RCS file: /cvsroot/devil-linux/build/md5sum.lst,v retrieving revision 1.371 retrieving revision 1.372 diff -u -d -r1.371 -r1.372 --- md5sum.lst 30 Sep 2007 15:09:32 -0000 1.371 +++ md5sum.lst 19 Oct 2007 17:45:51 -0000 1.372 @@ -321,8 +321,7 @@ 622e5843167593c8ea39bf86c66b8fcf src/libxslt-1.1.19.tar.gz 9613e6753abc86e26ff9d5425f24c17a src/linux-2.6.10-protector-1.patch.bz2 b0277e956b073699d0034130f273deed src/linux-2.6.21-mppe-mppc-1.3.patch.bz2 -8d1414adfd7fde2a9174bc7132daec1e src/linux-2.6.21.5-u2.diff.gz -2e9a302b5d514b231640227d6a2ab7bf src/linux-2.6.21.5.tar.bz2 +bc15fad1487336d5dcb0945cd039d8ed src/linux-2.6.21.7.tar.bz2 5d86ca7bb4ed458743acd922ff09dae6 src/linux-wlan-ng-0.2.8.tar.bz2 4074f4a3863275e86bc192f66fd76854 src/linux-wlan-ng.etc-shared.patch.bz2 96eb9ca1a1f1cb308757a7b8f0af93d6 src/lm_sensors-2.10.4.tar.gz @@ -499,6 +498,7 @@ 5f387296f1771c1c6b652284cfab5d9b src/udev-config-20070304.tar.bz2 b8f93446d52cd1e48323fa49f10a790c src/unarj_2.43-3.diff.gz 7a481dc017f1fbfa7f937a97e66eb99f src/unarj_2.43.orig.tar.gz +8385565418989573a0981dde4568c724 src/unionfs-2.1.3_for_2.6.21.7.diff.gz 131f879120945137f96cabc685060826 src/unrar-3.6.8_fix.patch.bz2 903363aada5fafa9bd00cac3309e6e45 src/unrarsrc-3.6.8.tar.gz 9d23919999d6eac9217d1f41472034a9 src/unzip552.tar.gz |
|
From: Serge L. <sma...@us...> - 2007-10-19 17:46:01
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv21390/scripts Modified Files: prepare Log Message: -- updated kernel and unionfs Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -r1.67 -r1.68 --- prepare 31 Aug 2007 08:28:24 -0000 1.67 +++ prepare 19 Oct 2007 17:45:51 -0000 1.68 @@ -90,7 +90,7 @@ if [ "$CONFIG_UNIONFS" == "y" ]; then if [ ! -f devil-linux-unionfs-kernel-patches.done ]; then touch devil-linux-unionfs-kernel-patches.done - zcat $SRCDIR/linux-2.6.*-u2.diff.gz | patch -p1 || exit 1 + zcat $SRCDIR/unionfs-2.1.3_for_2.6.*.diff.gz | patch -p1 || exit 1 fi fi |
|
From: Serge L. <sma...@us...> - 2007-10-19 17:45:56
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv21390/scripts/config/linux-2.6 Modified Files: config_linux.unionfs Log Message: -- updated kernel and unionfs Index: config_linux.unionfs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/linux-2.6/config_linux.unionfs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- config_linux.unionfs 30 Aug 2007 11:51:09 -0000 1.1 +++ config_linux.unionfs 19 Oct 2007 17:45:51 -0000 1.2 @@ -1,2 +1,3 @@ CONFIG_UNION_FS=y CONFIG_UNION_FS_XATTR=y +CONFIG_UNION_FS_DEBUG=n |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 20:56:49
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv1133 Modified Files: Tag: rel-1-2-patches dante Log Message: more ssp fixes Index: dante =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dante,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -d -r1.1.2.5 -r1.1.2.6 --- dante 16 Oct 2007 13:44:06 -0000 1.1.2.5 +++ dante 16 Oct 2007 20:56:37 -0000 1.1.2.6 @@ -45,7 +45,11 @@ if [ "$CONFIG_DANTE" = "y" ]; then rm -rf $TMPDIR || exit 1 mkdir -p $TMPDIR || exit 1 - make CC="gcc -fno-stack-protector" install DESTDIR=$TMPDIR || exit 1 + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + make CC="gcc -fno-stack-protector" install DESTDIR=$TMPDIR || exit 1 + else + make install DESTDIR=$TMPDIR || exit 1 + fi mkdir -p $TMPDIR/etc/socks || exit 1 cp ./example/*conf $TMPDIR/etc/socks || exit 1 copy_docs $TMPDIR |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 18:34:15
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11584 Modified Files: Tag: rel-1-2-patches pam_radius Log Message: oops again Index: pam_radius =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/pam_radius,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- pam_radius 16 Oct 2007 18:33:37 -0000 1.1.2.3 +++ pam_radius 16 Oct 2007 18:34:12 -0000 1.1.2.4 @@ -29,7 +29,7 @@ if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then make CC="gcc -fno-stack-protector" $PMAKE || exit 1 else - make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + make $PMAKE || exit 1 fi strip_debug # install it in local system, because other programs could need it |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 18:33:40
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv11217 Modified Files: Tag: rel-1-2-patches pam_radius Log Message: fix compile without ssp Index: pam_radius =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/pam_radius,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -u -d -r1.1.2.2 -r1.1.2.3 --- pam_radius 25 Apr 2006 17:06:46 -0000 1.1.2.2 +++ pam_radius 16 Oct 2007 18:33:37 -0000 1.1.2.3 @@ -26,8 +26,11 @@ case $1 in build ) if [ "$CONFIG_FREERADIUS" = "y" ]; then - - make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + else + make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + fi strip_debug # install it in local system, because other programs could need it cp -p pam_radius_auth.so /lib/security || exit 1 |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 15:02:40
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv27977 Modified Files: Tag: rel-1-2-patches ebtables Log Message: fix compile without ssp Index: ebtables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ebtables,v retrieving revision 1.7.2.3 retrieving revision 1.7.2.4 diff -u -d -r1.7.2.3 -r1.7.2.4 --- ebtables 8 Sep 2006 15:48:02 -0000 1.7.2.3 +++ ebtables 16 Oct 2007 14:51:07 -0000 1.7.2.4 @@ -46,7 +46,11 @@ bzcat $DL_DIR/src/ebtables-v2.0.8-rc2.patch.bz2 | patch || exit 1 touch devil-linux-ebtables-makefile-patch.done fi - make MANDIR=/usr/share/man $PMAKE CC="gcc -fno-stack-protector" all || exit 1 + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + make MANDIR=/usr/share/man $PMAKE CC="gcc -fno-stack-protector" all || exit 1 + else + make MANDIR=/usr/share/man $PMAKE all || exit 1 + fi strip_debug fi ;; |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 13:44:11
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv3675 Modified Files: Tag: rel-1-2-patches dante Log Message: oops Index: dante =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dante,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -d -r1.1.2.4 -r1.1.2.5 --- dante 16 Oct 2007 13:39:46 -0000 1.1.2.4 +++ dante 16 Oct 2007 13:44:06 -0000 1.1.2.5 @@ -32,9 +32,9 @@ ./configure --prefix=/usr --sysconfdir=/etc/socks --bindir=/usr/sbin --libexecdir=/usr/sbin \ --datadir=/usr/share/socks --localstatedir=/var/socks --sharedstatedir=/var/socks || exit 1 if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then - make $PMAKE || exit 1 - else make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + else + make $PMAKE || exit 1 fi strip_debug make check || exit 1 |
|
From: Heiko Z. <smi...@us...> - 2007-10-16 13:39:52
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs12.sourceforge.net:/tmp/cvs-serv1956/scripts Modified Files: Tag: rel-1-2-patches dante Log Message: make sure compile works with ssp disabled Index: dante =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dante,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -u -d -r1.1.2.3 -r1.1.2.4 --- dante 24 May 2007 08:05:45 -0000 1.1.2.3 +++ dante 16 Oct 2007 13:39:46 -0000 1.1.2.4 @@ -31,7 +31,11 @@ ./configure --prefix=/usr --sysconfdir=/etc/socks --bindir=/usr/sbin --libexecdir=/usr/sbin \ --datadir=/usr/share/socks --localstatedir=/var/socks --sharedstatedir=/var/socks || exit 1 - make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + make $PMAKE || exit 1 + else + make CC="gcc -fno-stack-protector" $PMAKE || exit 1 + fi strip_debug make check || exit 1 fi |