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: <bl...@us...> - 2003-10-31 20:58:10
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv597 Modified Files: build-iso Log Message: Fixing Heiko's stuff ... :-) Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- build-iso 30 Oct 2003 20:44:18 -0000 1.44 +++ build-iso 31 Oct 2003 20:58:07 -0000 1.45 @@ -123,7 +123,7 @@ echo -n -e " 2 - 800x600 VESA Frame Buffer\r\n" >> $CDDIR/boot/message echo -n -e " 3 - 1024x768 VESA Frame Buffer\r\n" >> $CDDIR/boot/message echo -n -e " 4 - Other\r\n\r\n" >> $CDDIR/boot/message - echo -n -e " m - MEMTEST86\r\n\r\n" >> $CDDIR/boot/message + [ -f $CDDIR/boot/memtest ] && echo -n -e " m - MEMTEST86\r\n\r\n" >> $CDDIR/boot/message echo -n -e "(timeout in 5 seconds)\r\n\r\n" >> $CDDIR/boot/message # convert the logo into the syslinux format |
From: Bruce S. <bw...@ar...> - 2003-10-31 20:33:45
|
What's the new glibc patch(es) do? - BS > - if [ ! -f devil-linux-glibc-patches.done ]; then > + if [ ! -f devil-linux-glibc-debian-patches.done ]; then > for PATCH in $(grep -v ^# ../glibc-patches/0list) > do > echo applying patch: $PATCH > - sh ../glibc-patches/$PATCH.dpatch -patch $(pwd) || exit 1 > + sh ../glibc-debian-patches/$PATCH.dpatch -patch $(pwd) || exit 1 > + done > + touch devil-linux-glibc-debian-patches.done > + fi > + if [ ! -f devil-linux-glibc-patches.done ]; then > + for PATCH in $(ls ../glibc-patches/*) > + do > + echo applying patch: $PATCH > + patch -i $PATCH -p1 || exit 1 > done > touch devil-linux-glibc-patches.done > fi |
From: <smi...@us...> - 2003-10-31 20:18:15
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv25702 Modified Files: CHANGES Log Message: - disabled stack smashing protector for iptables - updated thttpd to v2.24 - some cleanup Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.544 retrieving revision 1.545 diff -u -d -r1.544 -r1.545 --- CHANGES 31 Oct 2003 15:29:32 -0000 1.544 +++ CHANGES 31 Oct 2003 20:18:09 -0000 1.545 @@ -23,6 +23,8 @@ # 1.1.1 +- disabled stack smashing protector for iptables +- updated thttpd to v2.24 - fixed setup to configure NIC's with correct BROADCAST address. (bs) - added ipcalc (bs) - updated libxml2 to v2.6.1 |
From: <smi...@us...> - 2003-10-31 20:18:14
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv25702/scripts Modified Files: glibc iptables Log Message: - disabled stack smashing protector for iptables - updated thttpd to v2.24 - some cleanup Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- glibc 30 Oct 2003 00:02:36 -0000 1.20 +++ glibc 31 Oct 2003 20:18:09 -0000 1.21 @@ -27,11 +27,19 @@ case $1 in build ) tar -xjf $DL_DIR/src/glibc-linuxthreads-*.tar.bz2 || exit 1 - if [ ! -f devil-linux-glibc-patches.done ]; then + if [ ! -f devil-linux-glibc-debian-patches.done ]; then for PATCH in $(grep -v ^# ../glibc-patches/0list) do echo applying patch: $PATCH - sh ../glibc-patches/$PATCH.dpatch -patch $(pwd) || exit 1 + sh ../glibc-debian-patches/$PATCH.dpatch -patch $(pwd) || exit 1 + done + touch devil-linux-glibc-debian-patches.done + fi + if [ ! -f devil-linux-glibc-patches.done ]; then + for PATCH in $(ls ../glibc-patches/*) + do + echo applying patch: $PATCH + patch -i $PATCH -p1 || exit 1 done touch devil-linux-glibc-patches.done fi @@ -41,7 +49,6 @@ # unfortunately we can only go as high as the host kernel version KVER=$(uname -r) ../glibc-2*/configure --prefix=/usr --disable-profile --enable-add-ons --libexecdir=/usr/bin --enable-kernel=$KVER || exit 1 - echo "cross-compiling = no" > configparms || exit 1 make $PMAKE || exit 1 #make || exit 1 Index: iptables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptables,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- iptables 13 Oct 2003 17:36:08 -0000 1.18 +++ iptables 31 Oct 2003 20:18:09 -0000 1.19 @@ -28,6 +28,10 @@ case $1 in build ) + FLAGS="-O2" + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + FLAGS="-O2 -fno-stack-protector" + fi replace_str Makefile "/usr/local" "/usr" # parallel build failes, do not use $PMAKE make all KERNEL_DIR=$KERNELDIR || exit 1 |
From: <bl...@us...> - 2003-10-31 18:13:37
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv822 Modified Files: Tag: rel-1-0-patches install-on-usb Log Message: Fixed for devfs (hopefully). Index: install-on-usb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/install-on-usb,v retrieving revision 1.5 retrieving revision 1.5.2.1 diff -u -d -r1.5 -r1.5.2.1 --- install-on-usb 30 Sep 2003 19:50:41 -0000 1.5 +++ install-on-usb 31 Oct 2003 18:13:34 -0000 1.5.2.1 @@ -97,6 +97,13 @@ kernel /boot/vmlinuz ro root=/dev/ram0 init=/linuxrc ramdisk_blocksize=4096 vga=ask initrd /boot/initrd.gz EOF + if [ -f ./tmp/mnt2/boot/memtest ]; then + cat >> ./tmp/mnt2/boot/grub/grub.conf <<-EOF + title Memtest86 + root (hd0,$2) + kernel /boot/memtest + EOF + fi pushd ./tmp/mnt2/boot/grub > /dev/null rm -f menu.lst ln -s grub.conf menu.lst @@ -129,17 +136,35 @@ # echo -n "$(scsiDevFromScsiUsb $device) " # done echo - read -p "Enter device name (the partition) of USB device (i.e. /dev/sda1) -> " PARTITION + read -p "Enter PARTITION name on USB device (i.e. /dev/sda1) -> " PARTITION + read -p "Enter DEVICE name of USB device (i.e. /dev/sda) -> " DEVICE - DEVICE=${PARTITION%%[0-9]} - GRUBPART=$(expr ${PARTITION##/dev/[hs]d[a-z]} - 1) + + for device in "$PARTITION" "$DEVICE" + do + if [ -L $device ]; then + echo "If you are using devfs, you must supply the full device, not the link." + exit + fi + if [ ! -b $device ]; then + echo "Cannot find: $device" + exit + fi + done + + GRUBPART=$(expr $(basename ${PARTITION} | sed -e 's/^part//' -e 's/^[hs]d[a-z]//') - 1) echo echo "Please make sure the partition type is 'Linux' (83) " echo + $FDISK -l $DEVICE + echo;echo -n "Do you want to partition the media ? " ask_yes_no && $FDISK $DEVICE + + echo;echo " Partition: $PARTITION" + echo " Device: $DEVICE" echo;echo -n "All data on device will be lost, continue ? " ask_yes_no || return 0 |
From: <bl...@us...> - 2003-10-31 18:11:51
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv372 Modified Files: install-on-usb Log Message: Display info entered. Index: install-on-usb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/install-on-usb,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- install-on-usb 29 Oct 2003 23:11:01 -0000 1.7 +++ install-on-usb 31 Oct 2003 18:11:45 -0000 1.8 @@ -163,6 +163,9 @@ echo;echo -n "Do you want to partition the media ? " ask_yes_no && $FDISK $DEVICE + echo;echo " Partition: $PARTITION" + echo " Device: $DEVICE" + echo;echo -n "All data on device will be lost, continue ? " ask_yes_no || return 0 |
From: <bl...@us...> - 2003-10-31 15:47:27
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5791/scripts/scripts Modified Files: Tag: rel-1-0-patches setup Log Message: Fixed BROADCAST address in NIC's Index: setup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/setup,v retrieving revision 1.14 retrieving revision 1.14.2.1 diff -u -d -r1.14 -r1.14.2.1 --- setup 6 Sep 2003 15:17:28 -0000 1.14 +++ setup 31 Oct 2003 15:47:24 -0000 1.14.2.1 @@ -345,14 +345,17 @@ echo "DHCP=yes" >> $NIC echo "IP=" >> $NIC echo "NETMASK=" >> $NIC + echo "BROADCAST=" >> $NIC elif [ "$1" = "eth1" ]; then echo "DHCP=no" >> $NIC echo "IP=192.168.1.254" >> $NIC echo "NETMASK=255.255.255.0" >> $NIC + echo "BROADCAST=192.168.1.255" >> $NIC elif [ "$1" = "eth2" ]; then echo "DHCP=no" >> $NIC echo "IP=192.168.9.254" >> $NIC echo "NETMASK=255.255.255.0" >> $NIC + echo "BROADCAST=192.168.9.255" >> $NIC fi fi NICMENU="MODULE" @@ -433,7 +436,7 @@ mod_config $NIC NETMASK "$(cat $RESULT)" ;; OPTMOD) - inputbox "NETMASK" "Enter the options for the network module" "$OPTMOD" + inputbox "Options" "Enter the options for the network module" "$OPTMOD" RETURN=$? MODULE="$(echo "$MOD $(cat $RESULT|sed 's/\"//g')" | sed 's/ *$//')" [ $RETURN -eq 0 ] && mod_config $NIC MODULE "\"$MODULE\"" @@ -451,6 +454,9 @@ grep Ethernet /proc/pci pause else + source $NIC + eval $(ipcalc -b $IP $NETMASK 2> /dev/null) + mod_config $NIC BROADCAST \"$BROADCAST\" return fi done @@ -494,7 +500,7 @@ subnet $SUBNET netmask $NETMASK { option domain-name-servers $DNS; option routers $IP; - option broadcast-address $BROADCAST; + option broadcast-address $DHBROADCAST; range $FIRST $LAST; } EOF @@ -514,19 +520,19 @@ case "$NETMASK" in 255.255.255.0) SUBNET=${IP%.*}.0 - BROADCAST=${IP%.*}.255 + DHBROADCAST=${IP%.*}.255 FIRST=${IP%.*}.100 LAST=${IP%.*}.199 ;; 255.255.0.0) SUBNET=${IP%.*.*}.0.0 - BROADCAST=${IP%.*.*}.255.255 + DHBROADCAST=${IP%.*.*}.255.255 FIRST=${IP%.*.*}.0.100 LAST=${IP%.*.*}.0.199 ;; 255.0.0.0) SUBNET=${IP%.*.*.*}.0.0.0 - BROADCAST=${IP%.*.*.*}.255.255.255 + DHBROADCAST=${IP%.*.*.*}.255.255.255 FIRST=${IP%.*.*.*}.0.0.100 LAST=${IP%.*.*.*}.0.0.199 ;; |
From: <bl...@us...> - 2003-10-31 15:38:31
|
Update of /cvsroot/devil-linux/build/scripts/install In directory sc8-pr-cvs1:/tmp/cvs-serv4185/build/scripts/install Added Files: Tag: rel-1-0-patches 446ipcalc Log Message: fixed setup to configure NIC's with correct BROADCAST address --- NEW FILE: 446ipcalc --- |
From: <bl...@us...> - 2003-10-31 15:38:31
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv4185/build/scripts Added Files: Tag: rel-1-0-patches ipcalc Log Message: fixed setup to configure NIC's with correct BROADCAST address --- NEW FILE: ipcalc --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/ipcalc,v $ # $Revision: 1.1.2.1 $ # $Date: 2003/10/31 15:38:28 $ # # http://www.devil-linux.org # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) make || exit 1 strip_debug ;; install ) mkdir -p $CDDIR/usr/bin mkdir -p $CDDIR/usr/share/man/man1 cp -dp ipcalc $CDDIR/usr/bin/ || exit 1 cp -dp ipcalc.1 $CDDIR/usr/share/man/man1/ || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <bl...@us...> - 2003-10-31 15:38:31
|
Update of /cvsroot/devil-linux/build/scripts/build In directory sc8-pr-cvs1:/tmp/cvs-serv4185/build/scripts/build Added Files: Tag: rel-1-0-patches 446ipcalc Log Message: fixed setup to configure NIC's with correct BROADCAST address --- NEW FILE: 446ipcalc --- |
From: <bl...@us...> - 2003-10-31 15:38:31
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv4185/build Modified Files: Tag: rel-1-0-patches CHANGES Log Message: fixed setup to configure NIC's with correct BROADCAST address Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.22 retrieving revision 1.510.2.23 diff -u -d -r1.510.2.22 -r1.510.2.23 --- CHANGES 31 Oct 2003 15:30:04 -0000 1.510.2.22 +++ CHANGES 31 Oct 2003 15:38:27 -0000 1.510.2.23 @@ -23,6 +23,8 @@ # 1.0.1 +- fixed setup to configure NIC's with correct BROADCAST address. (bs) +- added ipcalc for setup program (bs) - disabled stack smashing protector for iptables - updated thttpd to v2.24 |
From: <smi...@us...> - 2003-10-31 15:30:36
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv2876 Modified Files: Tag: rel-1-0-patches VERSION Log Message: increased version number Index: VERSION =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/VERSION,v retrieving revision 1.9.2.2 retrieving revision 1.9.2.3 diff -u -d -r1.9.2.2 -r1.9.2.3 --- VERSION 28 Oct 2003 23:19:17 -0000 1.9.2.2 +++ VERSION 31 Oct 2003 15:30:33 -0000 1.9.2.3 @@ -1 +1 @@ -1.0 +1.0.1 |
From: <smi...@us...> - 2003-10-31 15:30:09
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2686/scripts Modified Files: Tag: rel-1-0-patches iptables Log Message: - disabled stack smashing protector for iptables - updated thttpd to v2.24 Index: iptables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptables,v retrieving revision 1.17 retrieving revision 1.17.2.1 diff -u -d -r1.17 -r1.17.2.1 --- iptables 2 Oct 2003 12:28:41 -0000 1.17 +++ iptables 31 Oct 2003 15:30:04 -0000 1.17.2.1 @@ -16,9 +16,13 @@ case $1 in build ) + FLAGS="-O2" + if [ "$CONFIG_GCC_STACK_PROTECTOR" = "y" ]; then + FLAGS="-O2 -fno-stack-protector" + fi replace_str Makefile "/usr/local" "/usr" # parallel build failes, do not use $PMAKE - make all KERNEL_DIR=$KERNELDIR || exit 1 + make all COPT_FLAGS="$FLAGS" KERNEL_DIR=$KERNELDIR || exit 1 strip_debug # install it, so other programs can use it make install || exit 1 |
From: <smi...@us...> - 2003-10-31 15:30:07
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv2686 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: - disabled stack smashing protector for iptables - updated thttpd to v2.24 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.21 retrieving revision 1.510.2.22 diff -u -d -r1.510.2.21 -r1.510.2.22 --- CHANGES 29 Oct 2003 23:58:22 -0000 1.510.2.21 +++ CHANGES 31 Oct 2003 15:30:04 -0000 1.510.2.22 @@ -22,6 +22,10 @@ # # +1.0.1 +- disabled stack smashing protector for iptables +- updated thttpd to v2.24 + 1.0 - changed group of /bin/su to wheel - added group wheel |
From: <bl...@us...> - 2003-10-31 15:29:36
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2550/build/scripts/scripts Modified Files: setup Log Message: fixed setup to configure NIC's with correct BROADCAST address. Index: setup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/setup,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- setup 10 Oct 2003 14:28:50 -0000 1.15 +++ setup 31 Oct 2003 15:29:32 -0000 1.16 @@ -351,14 +351,17 @@ echo "DHCP=yes" >> $NIC echo "IP=" >> $NIC echo "NETMASK=" >> $NIC + echo "BROADCAST=" >> $NIC elif [ "$1" = "eth1" ]; then echo "DHCP=no" >> $NIC echo "IP=192.168.1.254" >> $NIC echo "NETMASK=255.255.255.0" >> $NIC + echo "BROADCAST=192.168.1.255" >> $NIC elif [ "$1" = "eth2" ]; then echo "DHCP=no" >> $NIC echo "IP=192.168.9.254" >> $NIC echo "NETMASK=255.255.255.0" >> $NIC + echo "BROADCAST=192.168.9.255" >> $NIC fi fi NICMENU="MODULE" @@ -439,7 +442,7 @@ mod_config $NIC NETMASK "$(cat $RESULT)" ;; OPTMOD) - inputbox "NETMASK" "Enter the options for the network module" "$OPTMOD" + inputbox "Options" "Enter the options for the network module" "$OPTMOD" RETURN=$? MODULE="$(echo "$MOD $(cat $RESULT|sed 's/\"//g')" | sed 's/ *$//')" [ $RETURN -eq 0 ] && mod_config $NIC MODULE "\"$MODULE\"" @@ -457,6 +460,9 @@ grep Ethernet /proc/pci pause else + source $NIC + eval $(ipcalc -b $IP $NETMASK 2> /dev/null) + mod_config $NIC BROADCAST \"$BROADCAST\" return fi done @@ -500,7 +506,7 @@ subnet $SUBNET netmask $NETMASK { option domain-name-servers $DNS; option routers $IP; - option broadcast-address $BROADCAST; + option broadcast-address $DHBROADCAST; range $FIRST $LAST; } EOF @@ -520,19 +526,19 @@ case "$NETMASK" in 255.255.255.0) SUBNET=${IP%.*}.0 - BROADCAST=${IP%.*}.255 + DHBROADCAST=${IP%.*}.255 FIRST=${IP%.*}.100 LAST=${IP%.*}.199 ;; 255.255.0.0) SUBNET=${IP%.*.*}.0.0 - BROADCAST=${IP%.*.*}.255.255 + DHBROADCAST=${IP%.*.*}.255.255 FIRST=${IP%.*.*}.0.100 LAST=${IP%.*.*}.0.199 ;; 255.0.0.0) SUBNET=${IP%.*.*.*}.0.0.0 - BROADCAST=${IP%.*.*.*}.255.255.255 + DHBROADCAST=${IP%.*.*.*}.255.255.255 FIRST=${IP%.*.*.*}.0.0.100 LAST=${IP%.*.*.*}.0.0.199 ;; |
From: <bl...@us...> - 2003-10-31 15:29:35
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv2550/build Modified Files: CHANGES Log Message: fixed setup to configure NIC's with correct BROADCAST address. Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.543 retrieving revision 1.544 diff -u -d -r1.543 -r1.544 --- CHANGES 30 Oct 2003 21:48:12 -0000 1.543 +++ CHANGES 31 Oct 2003 15:29:32 -0000 1.544 @@ -23,6 +23,7 @@ # 1.1.1 +- fixed setup to configure NIC's with correct BROADCAST address. (bs) - added ipcalc (bs) - updated libxml2 to v2.6.1 - tight the space used by the files. strip more and delete unwanted docs (rpd) |
From: <bl...@us...> - 2003-10-31 04:09:34
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv29827/scripts Modified Files: heimdal Log Message: Doesn't work. Index: heimdal =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heimdal,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- heimdal 30 Oct 2003 21:37:37 -0000 1.2 +++ heimdal 31 Oct 2003 04:09:28 -0000 1.3 @@ -9,7 +9,7 @@ ### BEGIN INIT INFO # Provides: heimdal -# Required-Start: $basebuildtools glibc db-4 gdbm Libnet openssl openldap readline busybox +# Required-Start: $basebuildtools glibc db-4 gdbm Libnet openssl openldap readline # Required-Stop: # Default-Start: 1 2 # Default-Stop: |
From: <bl...@us...> - 2003-10-30 21:48:15
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv28550/build Modified Files: CHANGES Log Message: Added ipcalc. ipcalc is a cool little program that comes with Redhat that calculates IP related values (netmask, broadcast, etc.) from the command line. ipcalc is needed by the setup script for adding network cards. Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.542 retrieving revision 1.543 diff -u -d -r1.542 -r1.543 --- CHANGES 30 Oct 2003 00:47:58 -0000 1.542 +++ CHANGES 30 Oct 2003 21:48:12 -0000 1.543 @@ -23,6 +23,7 @@ # 1.1.1 +- added ipcalc (bs) - updated libxml2 to v2.6.1 - tight the space used by the files. strip more and delete unwanted docs (rpd) - added heimdal as krb5 replacement |
From: <bl...@us...> - 2003-10-30 21:48:15
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv28550/build/scripts Added Files: ipcalc Log Message: Added ipcalc. ipcalc is a cool little program that comes with Redhat that calculates IP related values (netmask, broadcast, etc.) from the command line. ipcalc is needed by the setup script for adding network cards. --- NEW FILE: ipcalc --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/ipcalc,v $ # $Revision: 1.1 $ # $Date: 2003/10/30 21:48:12 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: ipcalc # Required-Start: $basebuildtools $libs # Required-Stop: # Default-Start: 1 2 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings source $MYDIR/functions case $1 in build ) make || exit 1 strip_debug ;; install ) mkdir -p $CDDIR/usr/bin mkdir -p $CDDIR/usr/share/man/man1 cp -dp ipcalc $CDDIR/usr/bin/ || exit 1 cp -dp ipcalc.1 $CDDIR/usr/share/man/man1/ || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <bl...@us...> - 2003-10-30 21:37:41
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv26748/build/scripts Modified Files: heimdal Log Message: Changed heimdal so it compiles after busybox (to avoid busybox abort) Index: heimdal =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heimdal,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- heimdal 28 Oct 2003 01:21:24 -0000 1.1 +++ heimdal 30 Oct 2003 21:37:37 -0000 1.2 @@ -9,7 +9,7 @@ ### BEGIN INIT INFO # Provides: heimdal -# Required-Start: $basebuildtools glibc db-4 gdbm Libnet openssl openldap readline +# Required-Start: $basebuildtools glibc db-4 gdbm Libnet openssl openldap readline busybox # Required-Stop: # Default-Start: 1 2 # Default-Stop: |
From: <rap...@us...> - 2003-10-30 20:44:21
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv14888/build/scripts Modified Files: build-iso cd_cleanup Log Message: using cd_cleanup Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- build-iso 29 Oct 2003 23:11:01 -0000 1.43 +++ build-iso 30 Oct 2003 20:44:18 -0000 1.44 @@ -172,22 +172,6 @@ # go to the top directory of the future CD pushd $CDDIR > /dev/null - # some house cleaning - rm $CDDIR/usr/lib/*a - rm -rf $CDDIR/usr/include/* - pushd $CDDIR/usr/bin; strip_debug ; popd - pushd $CDDIR/bin; strip_debug ; popd - pushd $CDDIR/sbin; strip_debug ; popd - pushd $CDDIR/usr/sbin; strip_debug ; popd - if [ "$CONFIG_DEVIL_DOC_ISO" != "y" ]; then - rm -rf $CDDIR/cdtree/doc || exit 1 - fi - if [ "$CONFIG_DEVIL_MAN_ISO" != "y" ]; then - rm -rf $CDDIR/usr/share/man/* || exit 1 - rm -rf $CDDIR/usr/share/doc/* || exit 1 - rm -rf $CDDIR/usr/share/info/* || exit 1 - fi - echo "Creating the CD iso image, $WORKDIR/bootcd.iso... " mkisofs -b boot/isolinux.bin -c boot/boot.cat \ -no-emul-boot -boot-load-size 4 -boot-info-table \ Index: cd_cleanup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- cd_cleanup 29 Oct 2003 23:11:01 -0000 1.3 +++ cd_cleanup 30 Oct 2003 20:44:18 -0000 1.4 @@ -37,9 +37,9 @@ rm -rf $ISODIR/cdtree/doc || exit 1 fi if [ "$CONFIG_DEVIL_MAN_ISO" != "y" ]; then - rm -rf $ISODIR/usr/share/man/* || exit 1 - rm -rf $ISODIR/usr/share/doc/* || exit 1 - rm -rf $ISODIR/usr/share/info/* || exit 1 + rm -rf $CDDIR/usr/share/man/* || exit 1 + rm -rf $CDDIR/usr/share/doc/* || exit 1 + rm -rf $CDDIR/usr/share/info/* || exit 1 fi ;; |
From: <smi...@us...> - 2003-10-30 00:48:01
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv6583 Modified Files: CHANGES Log Message: updates Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.541 retrieving revision 1.542 diff -u -d -r1.541 -r1.542 --- CHANGES 29 Oct 2003 23:11:00 -0000 1.541 +++ CHANGES 30 Oct 2003 00:47:58 -0000 1.542 @@ -23,6 +23,7 @@ # 1.1.1 +- updated libxml2 to v2.6.1 - tight the space used by the files. strip more and delete unwanted docs (rpd) - added heimdal as krb5 replacement - removed krb5 |
From: Heiko Z. <he...@zu...> - 2003-10-30 00:31:22
|
Diego Torres wrote: >On Wed, Oct 29, 2003 at 06:17:56PM -0500, Heiko Zuerker wrote: > > > >>I would say that stuff would be better in the cd_cleanup script. >> >> > >any clue about forcing the cd_cleanup script to execute *the last one* from all the available scripts? > > > It is one of the last ones ;-) Check out the folder build/scripts/.buildorder/rc2.d , this is the folder for "install" Heiko |
From: Diego T. <dt...@co...> - 2003-10-30 00:17:39
|
On Wed, Oct 29, 2003 at 06:17:56PM -0500, Heiko Zuerker wrote: > I would say that stuff would be better in the cd_cleanup script. any clue about forcing the cd_cleanup script to execute *the last one* from all the available scripts? -- -- gnupg keyfingerprint -- 48AF 5BF9 8F54 2966 64CC 2327 7CD0 DD91 B09D 5799 -- Use of a keyboard or mouse may be linked to serious injuries or disorders. Diego Torres - dt...@co... - Madrid / España |
From: <smi...@us...> - 2003-10-30 00:02:39
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv31525/scripts Modified Files: devildoc glibc Log Message: use correct path names some cleanup Index: devildoc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devildoc,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- devildoc 29 Oct 2003 23:11:01 -0000 1.9 +++ devildoc 30 Oct 2003 00:02:36 -0000 1.10 @@ -48,14 +48,14 @@ ls -1 $DL_DIR/src > $CDDOCDIR/sources.lst || exit 1 cp -dp $DL_DIR/CHANGES $CDDOCDIR/ || exit 1 if [ "$CONFIG_DEVIL_DOC_ISO" = "y" ]; then - mkdir -p $ISODIR/cdtree/doc || exit 1 - cp -dpR $CDDOCDIR/* $ISODIR/cdtree/doc || exit 1 + mkdir -p $CDDIR/doc || exit 1 + cp -dpR $CDDOCDIR/* $CDDIR/doc || exit 1 fi if [ "$CONFIG_DEVIL_MAN_ISO" != "y" ]; then - rm -rf $ISODIR/usr/share/man/* || exit 1 - rm -rf $ISODIR/usr/share/doc/* || exit 1 - rm -rf $ISODIR/usr/share/info/* || exit 1 + rm -rf $CDDIR/usr/share/man/* || exit 1 + rm -rf $CDDIR/usr/share/doc/* || exit 1 + rm -rf $CDDIR/usr/share/info/* || exit 1 fi ;; Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- glibc 13 Oct 2003 17:36:08 -0000 1.19 +++ glibc 30 Oct 2003 00:02:36 -0000 1.20 @@ -27,10 +27,14 @@ case $1 in build ) tar -xjf $DL_DIR/src/glibc-linuxthreads-*.tar.bz2 || exit 1 - for PATCH in $(grep -v ^# ../glibc-patches/0list) - do - sh ../glibc-patches/$PATCH.dpatch -patch $(pwd) || exit 1 - done + if [ ! -f devil-linux-glibc-patches.done ]; then + for PATCH in $(grep -v ^# ../glibc-patches/0list) + do + echo applying patch: $PATCH + sh ../glibc-patches/$PATCH.dpatch -patch $(pwd) || exit 1 + done + touch devil-linux-glibc-patches.done + fi rm -rf ../glibc-build mkdir ../glibc-build || exit 1 cd ../glibc-build || exit 1 |