You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <smi...@us...> - 2003-10-09 00:15:53
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv30454/scripts/scripts Modified Files: Tag: rel-1-0-patches pre_init Log Message: - added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: pre_init =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/pre_init,v retrieving revision 1.6 retrieving revision 1.6.2.1 diff -u -d -r1.6 -r1.6.2.1 --- pre_init 29 Sep 2003 13:27:11 -0000 1.6 +++ pre_init 9 Oct 2003 00:15:47 -0000 1.6.2.1 @@ -11,6 +11,9 @@ # used to initialize the devfs # +# settings +source /etc/sysconfig/config + # # Ignore CTRL-C only in this shell, so we can interrupt subprocesses. # @@ -36,6 +39,12 @@ echo "Preparing and cleaning shmfs" rm -rf /shm/lib mkdir -p /shm/jail + +# resize the shmfs +if [ -n "$CHANGE_SHMFS_SIZE" ]; then + echo "Resizing shmfs to $CHANGE_SHMFS_SIZE" + mount -o remount,size=$CHANGE_SHMFS_SIZE /shm +fi if [ -d /config/etc_files ]; then if ! cmp -s /shm/etc/Devil-release /config/etc_files/Devil-release |
From: <smi...@us...> - 2003-10-09 00:15:53
|
Update of /cvsroot/devil-linux/build/config/etc/sysconfig In directory sc8-pr-cvs1:/tmp/cvs-serv30454/config/etc/sysconfig Modified Files: Tag: rel-1-0-patches config Log Message: - added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: config =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/sysconfig/config,v retrieving revision 1.18 retrieving revision 1.18.2.1 diff -u -d -r1.18 -r1.18.2.1 --- config 6 Sep 2003 01:59:26 -0000 1.18 +++ config 9 Oct 2003 00:15:47 -0000 1.18.2.1 @@ -57,3 +57,9 @@ # 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. +# The parameter accepts a suffix k, m or g for Ki, Mi, Gi +# (binary kilo, mega and giga) and can be changed on remount. +CHANGE_SHMFS_SIZE="" |
From: <smi...@us...> - 2003-10-09 00:15:53
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv30454 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: - added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.1 retrieving revision 1.510.2.2 diff -u -d -r1.510.2.1 -r1.510.2.2 --- CHANGES 8 Oct 2003 01:12:35 -0000 1.510.2.1 +++ CHANGES 9 Oct 2003 00:15:47 -0000 1.510.2.2 @@ -23,6 +23,8 @@ # 1.0-RC 2 +- added new configuration variable CHANGE_SHMFS_SIZE + to modify the size of the ramdisk ( default is RAM /2 ) - hotplug doesn't print pci & usb warnings anymore - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu |
From: <smi...@us...> - 2003-10-09 00:14:12
|
Update of /cvsroot/devil-linux/build/config/etc/sysconfig In directory sc8-pr-cvs1:/tmp/cvs-serv30193/config/etc/sysconfig Modified Files: config Log Message: added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: config =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/sysconfig/config,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- config 6 Sep 2003 01:59:26 -0000 1.18 +++ config 9 Oct 2003 00:14:08 -0000 1.19 @@ -57,3 +57,9 @@ # 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. +# The parameter accepts a suffix k, m or g for Ki, Mi, Gi +# (binary kilo, mega and giga) and can be changed on remount. +CHANGE_SHMFS_SIZE="" |
From: <smi...@us...> - 2003-10-09 00:14:12
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv30193 Modified Files: CHANGES Log Message: added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.512 retrieving revision 1.513 diff -u -d -r1.512 -r1.513 --- CHANGES 8 Oct 2003 01:17:14 -0000 1.512 +++ CHANGES 9 Oct 2003 00:14:08 -0000 1.513 @@ -25,6 +25,8 @@ 1.1.1 1.0-RC 2 +- added new configuration variable CHANGE_SHMFS_SIZE + to modify the size of the ramdisk ( default is RAM /2 ) - hotplug doesn't print pci & usb warnings anymore - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu |
From: <smi...@us...> - 2003-10-09 00:14:12
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv30193/scripts/scripts Modified Files: pre_init Log Message: added new configuration variable CHANGE_SHMFS_SIZE to modify the size of the ramdisk ( default is RAM /2 ) Index: pre_init =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/pre_init,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- pre_init 29 Sep 2003 13:27:11 -0000 1.6 +++ pre_init 9 Oct 2003 00:14:08 -0000 1.7 @@ -11,6 +11,9 @@ # used to initialize the devfs # +# settings +source /etc/sysconfig/config + # # Ignore CTRL-C only in this shell, so we can interrupt subprocesses. # @@ -36,6 +39,12 @@ echo "Preparing and cleaning shmfs" rm -rf /shm/lib mkdir -p /shm/jail + +# resize the shmfs +if [ -n "$CHANGE_SHMFS_SIZE" ]; then + echo "Resizing shmfs to $CHANGE_SHMFS_SIZE" + mount -o remount,size=$CHANGE_SHMFS_SIZE /shm +fi if [ -d /config/etc_files ]; then if ! cmp -s /shm/etc/Devil-release /config/etc_files/Devil-release |
From: <smi...@us...> - 2003-10-08 23:10:24
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv19940 Modified Files: update_src Log Message: corrected version number Index: update_src =================================================================== RCS file: /cvsroot/devil-linux/build/update_src,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- update_src 8 Oct 2003 01:17:14 -0000 1.17 +++ update_src 8 Oct 2003 23:10:20 -0000 1.18 @@ -4,7 +4,7 @@ # then use the main server to just get the latest greatest stuff # -VERSION="1.1.1" +VERSION="1.1" # the array holding the menu items declare -a menu |
From: <smi...@us...> - 2003-10-08 01:17:18
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv20285 Modified Files: CHANGES update_src Log Message: changed the version numbers to 1.1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.511 retrieving revision 1.512 diff -u -d -r1.511 -r1.512 --- CHANGES 8 Oct 2003 01:07:27 -0000 1.511 +++ CHANGES 8 Oct 2003 01:17:14 -0000 1.512 @@ -22,6 +22,8 @@ # # +1.1.1 + 1.0-RC 2 - hotplug doesn't print pci & usb warnings anymore - changed permissions of /var/log to 777 Index: update_src =================================================================== RCS file: /cvsroot/devil-linux/build/update_src,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- update_src 7 Oct 2003 22:39:03 -0000 1.16 +++ update_src 8 Oct 2003 01:17:14 -0000 1.17 @@ -4,7 +4,7 @@ # then use the main server to just get the latest greatest stuff # -VERSION="1.0" +VERSION="1.1.1" # the array holding the menu items declare -a menu |
From: <smi...@us...> - 2003-10-08 01:17:18
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv20285/scripts/config Modified Files: VERSION Log Message: changed the version numbers to 1.1 Index: VERSION =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/config/VERSION,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- VERSION 5 Oct 2003 20:21:07 -0000 1.9 +++ VERSION 8 Oct 2003 01:17:14 -0000 1.10 @@ -1 +1 @@ -1.0RC1 +1.1.1 |
From: <smi...@us...> - 2003-10-08 01:12:39
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv19666 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: test if the branch works Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510 retrieving revision 1.510.2.1 diff -u -d -r1.510 -r1.510.2.1 --- CHANGES 8 Oct 2003 00:36:53 -0000 1.510 +++ CHANGES 8 Oct 2003 01:12:35 -0000 1.510.2.1 @@ -23,7 +23,7 @@ # 1.0-RC 2 -- hotplug doesn't print pci&usb warnings anymore +- hotplug doesn't print pci & usb warnings anymore - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu |
From: <smi...@us...> - 2003-10-08 01:07:31
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv19037 Modified Files: CHANGES Log Message: test if the branch works Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510 retrieving revision 1.511 diff -u -d -r1.510 -r1.511 --- CHANGES 8 Oct 2003 00:36:53 -0000 1.510 +++ CHANGES 8 Oct 2003 01:07:27 -0000 1.511 @@ -23,7 +23,7 @@ # 1.0-RC 2 -- hotplug doesn't print pci&usb warnings anymore +- hotplug doesn't print pci & usb warnings anymore - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu |
From: <smi...@us...> - 2003-10-08 00:36:59
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv14889/scripts Modified Files: hotplug Log Message: - hotplug doesn't print pci&usb warnings anymore Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hotplug,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- hotplug 21 Jul 2003 20:43:33 -0000 1.6 +++ hotplug 8 Oct 2003 00:36:53 -0000 1.7 @@ -16,6 +16,10 @@ case $1 in install ) if [ "$CONFIG_HOTPLUG" = "y" ]; then + if [ ! -f devil-linux-hotplug_nowarning.done ]; then + touch devil-linux-hotplug_nowarning.done + bzcat $DL_DIR/src/hotplug_nowarning.diff.bz2 | patch -p1 || exit 1 + fi copy_man cp -dpR ./etc/hotplug $ETCDIR/etc/ || exit 1 cp -dpR ./etc/hotplug.d $ETCDIR/etc/ || exit 1 |
From: <smi...@us...> - 2003-10-08 00:36:59
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv14889 Modified Files: CHANGES Log Message: - hotplug doesn't print pci&usb warnings anymore Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.509 retrieving revision 1.510 diff -u -d -r1.509 -r1.510 --- CHANGES 8 Oct 2003 00:18:32 -0000 1.509 +++ CHANGES 8 Oct 2003 00:36:53 -0000 1.510 @@ -23,6 +23,7 @@ # 1.0-RC 2 +- hotplug doesn't print pci&usb warnings anymore - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu |
From: <smi...@us...> - 2003-10-08 00:18:39
|
Update of /cvsroot/devil-linux/build/config/etc/sysconfig In directory sc8-pr-cvs1:/tmp/cvs-serv12426/config/etc/sysconfig Modified Files: permissions.base Log Message: - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu Index: permissions.base =================================================================== RCS file: /cvsroot/devil-linux/build/config/etc/sysconfig/permissions.base,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- permissions.base 20 Sep 2003 17:36:57 -0000 1.15 +++ permissions.base 8 Oct 2003 00:18:32 -0000 1.16 @@ -103,3 +103,5 @@ /usr/sbin/traceroute root.root 4750 /usr/bin/ssh root.root 0750 /usr/sbin/brctl root.root 0700 + +/var/log root.root 0777 |
From: <smi...@us...> - 2003-10-08 00:18:39
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv12426 Modified Files: CHANGES Log Message: - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.508 retrieving revision 1.509 diff -u -d -r1.508 -r1.509 --- CHANGES 7 Oct 2003 23:11:29 -0000 1.508 +++ CHANGES 8 Oct 2003 00:18:32 -0000 1.509 @@ -23,6 +23,8 @@ # 1.0-RC 2 +- changed permissions of /var/log to 777 +- changed M for memtest86 to lowercase in boot menu 1.0-RC 1 - fixed clamav install script (Diego Torres) |
From: <smi...@us...> - 2003-10-08 00:18:39
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv12426/scripts Modified Files: build-iso Log Message: - changed permissions of /var/log to 777 - changed M for memtest86 to lowercase in boot menu Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- build-iso 5 Oct 2003 14:07:20 -0000 1.40 +++ build-iso 8 Oct 2003 00:18:33 -0000 1.41 @@ -111,7 +111,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 + 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: <smi...@us...> - 2003-10-07 23:22:09
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv4095/scripts/configuration Modified Files: prepare.config Log Message: set defaults in configure script Index: prepare.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/prepare.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- prepare.config 2 Oct 2003 15:58:26 -0000 1.2 +++ prepare.config 7 Oct 2003 23:22:03 -0000 1.3 @@ -5,5 +5,8 @@ # # http://www.devil-linux.org +test -z "$CONFIG_CPU" && CONFIG_CPU=486 menu_add "Build Configuration" list "CPU" CONFIG_CPU 486 586 686 + +test -z "$CONFIG_PMAKE" && CONFIG_PMAKE=1 menu_add "Build Configuration" list "Parallel Build Jobs" CONFIG_PMAKE 1 2 3 4 5 6 7 8 9 10 |
From: <smi...@us...> - 2003-10-07 23:22:07
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv4095/scripts Modified Files: settings Log Message: set defaults in configure script Index: settings =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/settings,v retrieving revision 1.36 retrieving revision 1.37 diff -u -d -r1.36 -r1.37 --- settings 6 Oct 2003 02:15:46 -0000 1.36 +++ settings 7 Oct 2003 23:22:03 -0000 1.37 @@ -20,7 +20,6 @@ test -s $BUILD_CONFIG && test -z "$NOTLOAD_DEFAULTCONFIG" && source $BUILD_CONFIG PMAKE="" test -n "$CONFIG_PMAKE" && PMAKE="-j$CONFIG_PMAKE" -test -z "$CONFIG_CPU" && CONFIG_CPU=486 CONF_HOST="i$CONFIG_CPU-pc-linux-gnu" KERNELVERSION=$(grep UTS_RELEASE $WORKDIR/linux-2.*/include/linux/version.h 2> /dev/null | sed 's/\"//g' | cut -d " " -f 3) SRCDIR=$DL_DIR/src |
From: <smi...@us...> - 2003-10-07 23:11:33
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv2642 Modified Files: CHANGES Log Message: closed section for 1.0rc1 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.507 retrieving revision 1.508 diff -u -d -r1.507 -r1.508 --- CHANGES 5 Oct 2003 22:58:12 -0000 1.507 +++ CHANGES 7 Oct 2003 23:11:29 -0000 1.508 @@ -22,7 +22,9 @@ # # -0.6 Beta 1 +1.0-RC 2 + +1.0-RC 1 - fixed clamav install script (Diego Torres) - turned of realmode poweroff for apm (was set as default) - fixed runlevel links to work with new insserv |
From: <smi...@us...> - 2003-10-07 22:51:34
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv31840/docs/documentation Modified Files: documentation.xml Log Message: update some stuff about the lfssystem Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- documentation.xml 7 Oct 2003 01:48:08 -0000 1.42 +++ documentation.xml 7 Oct 2003 22:51:29 -0000 1.43 @@ -786,8 +786,7 @@ <sect2> <title>The build environment</title> <para>Devil-Linux needs a special build environment, so that you don't run into problems and don't mess up your current system. We use a "Linux From Scratch" System (here called LFS ) to do this.</para> - <para>Goto <ulink url="ftp://ftp.de.devil-linux.org/pub/develsources/">ftp://ftp.de.devil-linux.org/pub/develsources/</ulink> and download the file that starts with lfssystem. Unpack the lfssystem file in a directory, such as <filename>/usr/src</filename> or any other directory you prefer.</para> - <para>At the time of writing this documentation, this file was the current one: <ulink url="ftp://ftp.devil-linux.org/pub/devel/sources/lfssystem-3.1/lfssystem-3.1-i486.tar.bz2">lfssystem-3.1-i486.tar.bz2</ulink></para> + <para>Goto <ulink url="ftp://ftp.devil-linux.org/pub/devel/sources/">ftp://ftp.devil-linux.org/pub/devel/sources/</ulink> and download the file that starts with lfssystem from the directory which matches the DL version you want to build. Unpack the lfssystem file in a directory, such as <filename>/usr/src</filename> or any other directory you prefer.</para> </sect2> <sect2> <title>CVS</title> |
From: <smi...@us...> - 2003-10-07 22:39:06
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv29840 Modified Files: update_src Log Message: added variable vor version number added ftp server heiko@home Index: update_src =================================================================== RCS file: /cvsroot/devil-linux/build/update_src,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- update_src 7 Oct 2003 00:14:37 -0000 1.15 +++ update_src 7 Oct 2003 22:39:03 -0000 1.16 @@ -4,6 +4,8 @@ # then use the main server to just get the latest greatest stuff # +VERSION="1.0" + # the array holding the menu items declare -a menu # the array holding the ftp servers name @@ -13,19 +15,23 @@ menu[1]="Devil-Linux FTP-Server Frankfurt (M)/Germany" ftps[1]="ftp.devil-linux.org" -ftpd[1]="/pub/devel/sources/1.0/" +ftpd[1]="/pub/devel/sources/$VERSION/" menu[2]="University of Technology Lille/France" ftps[2]="ftp.univ-lille1.fr" -ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/1.0/" +ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/$VERSION/" menu[3]="University of Technology Graz/Austria - official mirror" ftps[3]="ftp.tu-graz.ac.at" -ftpd[3]="/pub/mirror/devil-linux/devel/sources/1.0/" +ftpd[3]="/pub/mirror/devil-linux/devel/sources/$VERSION/" menu[4]="University of Technology Graz/Austria - internal mirror" ftps[4]="ftp.vc-graz.ac.at" -ftpd[4]="/pub/mirror/devil-linux/devel/sources/1.0/" +ftpd[4]="/pub/mirror/devil-linux/devel/sources/$VERSION/" + +menu[5]="Heiko @ home - internal mirror" +ftps[5]="192.168.0.2" +ftpd[5]="/ftp.devil-linux.org/devel/sources/$VERSION/" function menu () { local menuitems=${#menu[@]} # number of menuitems |
From: <smi...@us...> - 2003-10-07 01:48:11
|
Update of /cvsroot/devil-linux/build/docs/documentation In directory sc8-pr-cvs1:/tmp/cvs-serv28925/build/docs/documentation Modified Files: documentation.xml Log Message: corrected minimum memory Index: documentation.xml =================================================================== RCS file: /cvsroot/devil-linux/build/docs/documentation/documentation.xml,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- documentation.xml 5 Oct 2003 20:22:29 -0000 1.41 +++ documentation.xml 7 Oct 2003 01:48:08 -0000 1.42 @@ -41,7 +41,7 @@ <para>Intel 486 compatible or higher</para> </listitem> <listitem> - <para>16 MB RAM or more</para> + <para>32 MB RAM or more</para> </listitem> <listitem> <para>CD-ROM Drive</para> |
From: <smi...@us...> - 2003-10-07 00:14:42
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv16790 Modified Files: update_src Log Message: use correct version number when downloading sources Index: update_src =================================================================== RCS file: /cvsroot/devil-linux/build/update_src,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- update_src 17 May 2003 11:43:08 -0000 1.14 +++ update_src 7 Oct 2003 00:14:37 -0000 1.15 @@ -13,19 +13,19 @@ menu[1]="Devil-Linux FTP-Server Frankfurt (M)/Germany" ftps[1]="ftp.devil-linux.org" -ftpd[1]="/pub/devel/sources/0.6/" +ftpd[1]="/pub/devel/sources/1.0/" menu[2]="University of Technology Lille/France" ftps[2]="ftp.univ-lille1.fr" -ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/0.6/" +ftpd[2]="/pub/os/linux/distributions/devil-linux/devel/sources/1.0/" menu[3]="University of Technology Graz/Austria - official mirror" ftps[3]="ftp.tu-graz.ac.at" -ftpd[3]="/pub/mirror/devil-linux/devel/sources/0.6/" +ftpd[3]="/pub/mirror/devil-linux/devel/sources/1.0/" menu[4]="University of Technology Graz/Austria - internal mirror" ftps[4]="ftp.vc-graz.ac.at" -ftpd[4]="/pub/mirror/devil-linux/devel/sources/0.6/" +ftpd[4]="/pub/mirror/devil-linux/devel/sources/1.0/" function menu () { local menuitems=${#menu[@]} # number of menuitems |
From: <smi...@us...> - 2003-10-06 02:15:52
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7244/scripts Modified Files: settings Log Message: created wrong version string for releases Index: settings =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/settings,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- settings 5 Oct 2003 02:28:15 -0000 1.35 +++ settings 6 Oct 2003 02:15:46 -0000 1.36 @@ -27,9 +27,9 @@ # get current version if [ "$DL_IS_OFFICIAL_RELEASE" = "y" ]; then - DL_VERSION="$(cat $SCRCONFIG/VERSION)-$(date -u -I)" -else DL_VERSION="$(cat $SCRCONFIG/VERSION)" +else + DL_VERSION="$(cat $SCRCONFIG/VERSION)-$(date -u -I)" fi DL_VERSION_FULL="$DL_VERSION-i$CONFIG_CPU" [ "$CONFIG_LINUX_SMP" = "y" ] && DL_VERSION_FULL="${DL_VERSION_FULL}-SMP" |
From: <smi...@us...> - 2003-10-06 00:45:49
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv27961 Modified Files: LINKS Log Message: corrected spelling Index: LINKS =================================================================== RCS file: /cvsroot/devil-linux/build/LINKS,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- LINKS 3 Oct 2003 00:56:09 -0000 1.9 +++ LINKS 6 Oct 2003 00:45:44 -0000 1.10 @@ -1,7 +1,7 @@ # $Id$ # -Download links/homepages for serveral software packages: +Download links/homepages for several software packages: hostap: http://hostap.epitest.fi @@ -46,4 +46,5 @@ http://secure.netroedge.com/~lm78/ insserv: - ftp://ftp.suse.com/pub/projects/init \ No newline at end of file + ftp://ftp.suse.com/pub/projects/init + \ No newline at end of file |