You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(202) |
Nov
(201) |
Dec
(280) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(493) |
Feb
(106) |
Mar
(215) |
Apr
(163) |
May
(79) |
Jun
(193) |
Jul
(47) |
Aug
(71) |
Sep
(127) |
Oct
(41) |
Nov
(49) |
Dec
(120) |
2005 |
Jan
(147) |
Feb
(45) |
Mar
(26) |
Apr
(71) |
May
(52) |
Jun
(28) |
Jul
(92) |
Aug
(50) |
Sep
(35) |
Oct
(193) |
Nov
(106) |
Dec
(52) |
2006 |
Jan
(51) |
Feb
(38) |
Mar
(33) |
Apr
(79) |
May
(107) |
Jun
(67) |
Jul
(21) |
Aug
(65) |
Sep
(44) |
Oct
(87) |
Nov
(12) |
Dec
(56) |
2007 |
Jan
(48) |
Feb
(58) |
Mar
(63) |
Apr
(31) |
May
(25) |
Jun
(20) |
Jul
(72) |
Aug
(54) |
Sep
(30) |
Oct
(76) |
Nov
(74) |
Dec
(25) |
2008 |
Jan
(39) |
Feb
(39) |
Mar
(62) |
Apr
(64) |
May
(59) |
Jun
(31) |
Jul
(25) |
Aug
(25) |
Sep
(17) |
Oct
(24) |
Nov
|
Dec
(1) |
2009 |
Jan
(60) |
Feb
(39) |
Mar
(16) |
Apr
(30) |
May
(52) |
Jun
(35) |
Jul
(15) |
Aug
(15) |
Sep
(21) |
Oct
(32) |
Nov
(39) |
Dec
(52) |
2010 |
Jan
(42) |
Feb
(40) |
Mar
(23) |
Apr
(20) |
May
(27) |
Jun
(10) |
Jul
(30) |
Aug
(30) |
Sep
(66) |
Oct
(12) |
Nov
(35) |
Dec
(60) |
2011 |
Jan
(16) |
Feb
(1) |
Mar
(3) |
Apr
(28) |
May
(21) |
Jun
|
Jul
(12) |
Aug
(6) |
Sep
(10) |
Oct
(14) |
Nov
(40) |
Dec
(60) |
2012 |
Jan
(23) |
Feb
(17) |
Mar
(24) |
Apr
(18) |
May
(13) |
Jun
(1) |
Jul
|
Aug
(5) |
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(15) |
2013 |
Jan
(2) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
|
Aug
(3) |
Sep
(5) |
Oct
(3) |
Nov
(1) |
Dec
(1) |
2014 |
Jan
(3) |
Feb
(5) |
Mar
(8) |
Apr
(3) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
|
Sep
(4) |
Oct
(10) |
Nov
|
Dec
(9) |
2015 |
Jan
(18) |
Feb
(17) |
Mar
(5) |
Apr
(2) |
May
|
Jun
(5) |
Jul
(1) |
Aug
(2) |
Sep
(1) |
Oct
(24) |
Nov
(20) |
Dec
(41) |
2016 |
Jan
(9) |
Feb
(3) |
Mar
(2) |
Apr
(7) |
May
(8) |
Jun
(1) |
Jul
(6) |
Aug
(5) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(6) |
2017 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
(4) |
May
(1) |
Jun
(1) |
Jul
(2) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <smi...@us...> - 2004-01-12 02:58:03
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv6240/scripts Modified Files: build-iso build.sh linux loop-AES prepare Log Message: more changes to get kernel 2.6 support working Index: build-iso =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-iso,v retrieving revision 1.48 retrieving revision 1.49 diff -u -d -r1.48 -r1.49 --- build-iso 8 Nov 2003 04:06:28 -0000 1.48 +++ build-iso 12 Jan 2004 02:57:58 -0000 1.49 @@ -42,6 +42,9 @@ # In principle we could do with one, but it comes in handy to be able to # leave one mounted, so I took two different ones. + rm -rf $WORKDIR/mnt + mkdir -p $WORKDIR/mnt/loop{1,2} + # we first assume that a proper directory tree of the later ramdisk # is in the initrdtree directory. Put everything in there what you think # will be needed. We assume that this is the case. @@ -89,15 +92,6 @@ #=========================================================================== - echo -n "copying modules...." - cp -fdpR $WORKDIR/modules.initrd/* $INITRDDIR/ || exit 1 - echo $DL_VERSION > $INITRDDIR/VERSION - - echo "done" - echo - - #=========================================================================== - echo -n "creating etc.tar.bz2..." (cd $WORKDIR/ETC; tar -cjf $CDDIR/config/etc.tar.bz2 etc) @@ -118,14 +112,102 @@ #=========================================================================== - echo "creating the initial ramdisk (initrd) image.... " + if [ "1" = "1" ] || [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then - cp -p $DL_DIR/config/etc/initrd/linuxrc $INITRDDIR - mkcramfs $INITRDDIR/ $BOOTIMAGEDIR/initrd - gzip -f -9 $BOOTIMAGEDIR/initrd + echo "creating the initial ramdisk (initrd) image.... " - echo "done" - echo + cp -p $DL_DIR/config/etc/initrd/linuxrc $INITRDDIR + mkcramfs $INITRDDIR/ $BOOTIMAGEDIR/initrd + gzip -f -9 $BOOTIMAGEDIR/initrd + + echo "done" + echo + else + + #=========================================================================== + echo "creating the initial ramdisk (initrd) image.... " + + # first find out how much space we need. + ISIZE=`du -s -k $INITRDDIR | awk '{print $1}'` + + # is that true? Anyway, we are smaller than that. + #if [ $ISIZE -gt 8192 ]; then + # echo "Initial Ramdisk max size exceeded ($ISIZE, max is 8192KB)" + # exit 1 + #fi + + ISIZE=`expr $ISIZE + 2048` + #ISIZE=15000 + echo " Initial Ramdisk contents will be $ISIZE KB" + + # delete the existing ramdisk image, if there is one + rm -f $WORKDIR/ramdisk + + # create a file of 4MB (4096 KB) + dd if=/dev/zero of=$WORKDIR/ramdisk bs=1k count=$ISIZE + + # associate it with /dev/loop2 + losetup /dev/loop2 $WORKDIR/ramdisk + + # make an ext2 filesystem on it. We set the amount of unused space to 0% + # and turn down the number of inodes to save space + yes | mkfs -t ext2 -m 0 -i 1024 $WORKDIR/ramdisk + #yes | mkfs -t ext2 -i 16384 -m 0 $TOPDIR/ramdisk + #mkfs -t ext2 -i 16384 -m 0 /dev/loop2 + #mkfs -t ext2 /dev/loop2 + tune2fs -c 0 -i 0 /dev/loop2 + + # we mount it... + mount /dev/loop2 $WORKDIR/mnt/loop2 + + # ... and delete the lost+found directory + rm -rf $WORKDIR/mnt/loop2/lost+found + + # store version + echo $DLVERSION > $WORKDIR/mnt/loop2/VERSION + + # we need the linuxrc and links scripts + cp -p $DL_DIR/config/etc/initrd/linuxrc $INITRDDIR + + # and the functions script + cp -p $ETCDIR/etc/init.d/functions $INITRDDIR + + # then we copy the contents of our initrdtree to this filesystem + cp -dpR $INITRDDIR/* $WORKDIR/mnt/loop2/ + + # and unmount and divorce /dev/loop2 + umount $WORKDIR/mnt/loop2 + losetup -d /dev/loop2 + + echo "done" + echo + + #=========================================================================== + + # Now we have the image of the ramdisk in $TOPDIR/loopfiles/ramdisk. We + # compress this one and write the compressed image to the boot tree: + + echo -n "compressing the initial ramdisk (initrd) image.... " + + # delete any existing one + rm -f $BOOTIMAGEDIR/initrd.gz + + # and gzip our ramdisk image and put it in the right place. + #gzip -9 -c $WORKDIR/ramdisk > $BOOTIMAGEDIR/initrd.gz + gzip -c $WORKDIR/ramdisk > $BOOTIMAGEDIR/initrd.gz + + # we are done with the uncompressed ramdisk image, delete it + rm $WORKDIR/ramdisk + + # how much is the contents of the bootimagetree? + #ISIZE=`du -s -k $BOOTIMAGEDIR | awk '{print $1}'` + #echo "Boot image size is $ISIZE KB" + + echo "done" + echo + + #=========================================================================== + fi #=========================================================================== Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.67 retrieving revision 1.68 diff -u -d -r1.67 -r1.68 --- build.sh 11 Jan 2004 14:43:04 -0000 1.67 +++ build.sh 12 Jan 2004 02:57:59 -0000 1.68 @@ -90,8 +90,6 @@ nice rm -rf $CDDOCDIR echo "cleaning $ISODIR" nice rm -rf $ISODIR - nice rm -rf $WORKDIR/modules - nice rm -rf $WORKDIR/modules.initrd nice rm -f ${DONE}_install* nice rm -f ${DONE}_iso* echo "done" Index: linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- linux 11 Jan 2004 14:43:04 -0000 1.50 +++ linux 12 Jan 2004 02:57:59 -0000 1.51 @@ -23,9 +23,12 @@ # source functions and config source $MYDIR/settings +# change into the correct kernel directory +cd $KERNELDIR || exit 1 + case $1 in build ) - if [ ! -e include/linux/linux_logo.h.org ]; then + if [ "$CONFIG_LINUX_VERSION" = "2.4" ] && [ ! -e include/linux/linux_logo.h.org ]; then cp -f include/linux/linux_logo.h include/linux/linux_logo.h.org fblogo $DL_DIR/other/fblogo.png include/linux/linux_logo.h fi @@ -45,19 +48,15 @@ ;; install ) - make modules_install INSTALL_MOD_PATH=$WORKDIR/modules || exit 1 + make modules_install INSTALL_MOD_PATH=$CDDIR || exit 1 cp arch/i386/boot/bzImage $BOOTIMAGEDIR/vmlinuz || exit 1 cp System.map $BOOTIMAGEDIR/boot || exit 1 cp System.map $CDDIR/boot || exit 1 - cp -dpR $WORKDIR/modules/* $CDDIR/ || exit 1 - # KERNELVERSION=$(ls -A $WORKDIR/modules/lib/modules) - mkdir -p $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/kernel/drivers || exit 1 - cp -dpR $WORKDIR/modules/lib/modules/$KERNELVERSION/kernel/drivers/scsi $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 - cp -dpR $WORKDIR/modules/lib/modules/$KERNELVERSION/kernel/drivers/block $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 - #cp -dpR $WORKDIR/modules/lib/modules/$KERNELVERSION/kernel/drivers/usb $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 - cp -dp $WORKDIR/modules/lib/modules/$KERNELVERSION/modules.dep $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/ || exit 1 + mkdir -p $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers || exit 1 + cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/scsi $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 + cp -dpR $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/block $INITRDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 + cp -dp $CDDIR/lib/modules/$KERNELVERSION/modules.dep $INITRDDIR/lib/modules/$KERNELVERSION/ || exit 1 mkdir -p $ETCDIR/etc/modules - #cp -dp $WORKDIR/modules/lib/modules/$KERNELVERSION/modules.* $ETCDIR/etc/modules ;; * ) Index: loop-AES =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/loop-AES,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- loop-AES 11 Jan 2004 14:43:04 -0000 1.4 +++ loop-AES 12 Jan 2004 02:57:59 -0000 1.5 @@ -21,6 +21,8 @@ MYNAME=LOOP-AES +# we do not need this on Kernel 2.6 +test ! "$CONFIG_LINUX_VERSION" = "2.4" && exit 0 case $1 in build ) @@ -28,7 +30,7 @@ ;; install ) - cp -dpR lib/modules/$KERNELVERSION/block $WORKDIR/modules.initrd/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 + cp -dpR lib/modules/$KERNELVERSION/block $CDDIR/lib/modules/$KERNELVERSION/kernel/drivers/ || exit 1 ;; * ) Index: prepare =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/prepare,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- prepare 11 Jan 2004 14:43:05 -0000 1.31 +++ prepare 12 Jan 2004 02:57:59 -0000 1.32 @@ -83,50 +83,49 @@ rm -f $KERNELDIR/.config.add fi - cp $MYDIR/config/config_linux $KERNELDIR/.config || exit 1 + KERNEL_CONFIG_DIR=$DL_DIR/scripts/config + if [ ! "$CONFIG_LINUX_VERSION" = "2.4" ]; then + KERNEL_CONFIG_DIR=$DL_DIR/scripts/config/linux-$CONFIG_LINUX_VERSION + fi + + cp $KERNEL_CONFIG_DIR/config_linux $KERNELDIR/.config || exit 1 echo "CONFIG_M$CONFIG_KERNEL_CPU=y" >> $KERNELDIR/.config echo "CONFIG_NR_CPUS=$CONFIG_LINUX_NR_CPUS" >> $KERNELDIR/.config if [ "$CONFIG_LINUX_SMP" == "y" ]; then - cat $DL_DIR/scripts/config/config_linux.smp >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.smp >> $KERNELDIR/.config || exit 1 else - cat $DL_DIR/scripts/config/config_linux.up >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.up >> $KERNELDIR/.config || exit 1 fi if [ "$CONFIG_HIGHMEM" == "y" ]; then - cat $DL_DIR/scripts/config/config_highmem.yes >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_highmem.yes >> $KERNELDIR/.config || exit 1 else - cat $DL_DIR/scripts/config/config_highmem.no >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_highmem.no >> $KERNELDIR/.config || exit 1 fi if [ "$CONFIG_KERNEL_CPU" == "VIAC3_2" ]; then - cat $DL_DIR/scripts/config/config_linux.epia >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.epia >> $KERNELDIR/.config || exit 1 elif [ "$CONFIG_KERNEL_CPU" == "486" ]; then - cat $DL_DIR/scripts/config/config_linux.486 >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.486 >> $KERNELDIR/.config || exit 1 else - cat $DL_DIR/scripts/config/config_linux.486 >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.486 >> $KERNELDIR/.config || exit 1 fi if [ "$CONFIG_ALSA" == "y" ]; then - cat $DL_DIR/scripts/config/config_linux.alsa >> $KERNELDIR/.config || exit 1 + cat $KERNEL_CONFIG_DIR/config_linux.alsa >> $KERNELDIR/.config || exit 1 fi pushd $KERNELDIR > /dev/null if [ ! -f devil-linux-kernel-patches.done ]; then touch devil-linux-kernel-patches.done - for PATCH in $(ls $WORKDIR/kernel-patches/* 2> /dev/null ) + for PATCH in $(ls $WORKDIR/kernel-patches-$CONFIG_LINUX_VERSION/* 2> /dev/null ) do echo applying patch: $PATCH patch -p1 -i $PATCH || exit 1 done fi - #if [ ! -f devil-linux-kernel-patches-usbat02.done ] && [ "$CONFIG_SCM_USBAT02" = "y" ]; then - # touch devil-linux-kernel-patches-usbat02.done - # echo applying patch: $PATCH - # bzcat $DL_DIR/src/usbat02*.diff.bz2 | patch -p1 || exit 1 - # echo "CONFIG_USB_STORAGE_ZIOCF=y" >> ./.config - #fi make oldconfig || exit 1 make dep || exit 1 @@ -156,7 +155,7 @@ cp $DL_DIR/config/etc/gshadow /etc || exit 1 ;; iso ) - ;; + ;; * ) echo "ERROR ($0)" |
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs1:/tmp/cvs-serv6240/scripts/config/linux-2.6 Added Files: config_highmem.no config_highmem.yes config_linux config_linux.486 config_linux.smp config_linux.up Log Message: more changes to get kernel 2.6 support working --- NEW FILE: config_highmem.no --- CONFIG_NOHIGHMEM=y # CONFIG_HIGHMEM4G is not set # CONFIG_HIGHMEM64G is not set # CONFIG_HIGHMEM is not set # CONFIG_HIGHPTE is not set --- NEW FILE: config_highmem.yes --- # CONFIG_NOHIGHMEM is not set CONFIG_HIGHMEM4G=y # CONFIG_HIGHMEM64G is not set CONFIG_HIGHMEM=y CONFIG_HIGHPTE=y --- NEW FILE: config_linux --- # # Automatically generated make config: don't edit # CONFIG_X86=y CONFIG_MMU=y CONFIG_UID16=y CONFIG_GENERIC_ISA_DMA=y # # Code maturity level options # CONFIG_EXPERIMENTAL=y CONFIG_CLEAN_COMPILE=y CONFIG_STANDALONE=y # # General setup # CONFIG_SWAP=y [...1639 lines suppressed...] CONFIG_CRYPTO_BLOWFISH=m CONFIG_CRYPTO_TWOFISH=m CONFIG_CRYPTO_SERPENT=m CONFIG_CRYPTO_AES=m CONFIG_CRYPTO_CAST5=m CONFIG_CRYPTO_CAST6=m CONFIG_CRYPTO_DEFLATE=m CONFIG_CRYPTO_TEST=m # # Library routines # CONFIG_CRC32=m CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=m CONFIG_X86_SMP=y CONFIG_X86_HT=y CONFIG_X86_BIOS_REBOOT=y CONFIG_X86_TRAMPOLINE=y CONFIG_PC=y --- NEW FILE: config_linux.486 --- # # Processor type and features # CONFIG_X86_PC=y # CONFIG_X86_VOYAGER is not set # CONFIG_X86_NUMAQ is not set # CONFIG_X86_SUMMIT is not set # CONFIG_X86_BIGSMP is not set # CONFIG_X86_VISWS is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_ES7000 is not set # CONFIG_M386 is not set # CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set # CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set # CONFIG_MK8 is not set # CONFIG_MELAN is not set # CONFIG_MCRUSOE is not set # CONFIG_MWINCHIPC6 is not set # CONFIG_MWINCHIP2 is not set # CONFIG_MWINCHIP3D is not set # CONFIG_MCYRIXIII is not set # CONFIG_MVIAC3_2 is not set CONFIG_X86_GENERIC=y CONFIG_X86_CMPXCHG=y CONFIG_X86_XADD=y CONFIG_X86_L1_CACHE_SHIFT=7 CONFIG_RWSEM_XCHGADD_ALGORITHM=y CONFIG_X86_PPRO_FENCE=y CONFIG_X86_F00F_BUG=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y CONFIG_X86_ALIGNMENT_16=y CONFIG_X86_INTEL_USERCOPY=y CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y # CONFIG_PREEMPT is not set CONFIG_X86_MCE=y CONFIG_X86_MCE_NONFATAL=y CONFIG_X86_MCE_P4THERMAL=y CONFIG_TOSHIBA=m CONFIG_I8K=m # CONFIG_MICROCODE is not set CONFIG_X86_MSR=y CONFIG_X86_CPUID=y CONFIG_EDD=y # CONFIG_MATH_EMULATION is not set CONFIG_MTRR=y CONFIG_HAVE_DEC_LOCK=y --- NEW FILE: config_linux.smp --- CONFIG_SMP=y # CONFIG_X86_UP_APIC=y # CONFIG_X86_UP_IOAPIC=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y CONFIG_HAVE_DEC_LOCK=y # CONFIG_MULTIQUAD is not set --- NEW FILE: config_linux.up --- # CONFIG_SMP is not set CONFIG_X86_UP_APIC=y CONFIG_X86_UP_IOAPIC=y CONFIG_X86_LOCAL_APIC=y CONFIG_X86_IO_APIC=y # CONFIG_HAVE_DEC_LOCK is not set |
From: <smi...@us...> - 2004-01-11 19:39:57
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv17473a/scripts Modified Files: kbd Log Message: updated a few programs Index: kbd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/kbd,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- kbd 11 Jan 2004 14:43:04 -0000 1.3 +++ kbd 11 Jan 2004 19:39:53 -0000 1.4 @@ -25,10 +25,6 @@ case $1 in build ) - if [ ! -f kbd-patches.done ]; then - bzcat $DL_DIR/src/kbd-1.08.patch.bz2 | patch -p1 || exit 1 - touch kbd-patches.done - fi ./configure --prefix=/usr --mandir=/usr/share/man || exit 1 make $PMAKE all || exit 1 strip_debug |
From: <smi...@us...> - 2004-01-11 19:39:56
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv17473a Modified Files: CHANGES Log Message: updated a few programs Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.642 retrieving revision 1.643 diff -u -d -r1.642 -r1.643 --- CHANGES 11 Jan 2004 15:17:01 -0000 1.642 +++ CHANGES 11 Jan 2004 19:39:53 -0000 1.643 @@ -22,6 +22,16 @@ # 1.1.2 +- updated lvm to v1.0.8 +- updated cvs to v1.12.5 +- updated sed to v4.08 +- updated prism54 driver to cvs-20040110 +- updated kbd to v1.10 +- updated hotplug to v2004_01_04 +- updated file to v4.07 +- updated distcc to v2.12.1 +- updated chpax to v0.6 +- updated alsa-driver/lib/oss/tools/utils to v1.0.1 - menuconfig now correctly sets any missing list values in the config file - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 |
From: <smi...@us...> - 2004-01-11 18:17:10
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv1734 Modified Files: hostap-driver Log Message: config var has new name Index: hostap-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hostap-driver,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- hostap-driver 11 Jan 2004 14:43:04 -0000 1.2 +++ hostap-driver 11 Jan 2004 18:17:06 -0000 1.3 @@ -45,7 +45,7 @@ ;; install ) - if [ "$CONFIG_HOSTAP" = "y" ]; then + if [ "$CONFIG_HOSTAP_DRIVER" = "y" ]; then mkdir -p $MY_BINDIR mkdir -p $MY_DOCDIR |
From: <smi...@us...> - 2004-01-11 17:58:22
|
Update of /cvsroot/devil-linux/build/scripts/config/linux-2.6 In directory sc8-pr-cvs1:/tmp/cvs-serv30805/scripts/config/linux-2.6 Log Message: Directory /cvsroot/devil-linux/build/scripts/config/linux-2.6 added to the repository |
From: <smi...@us...> - 2004-01-11 15:17:05
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv26169/scripts Modified Files: functions menuconfig Log Message: - menuconfig now correctly sets any missing list values in the config file Index: functions =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/functions,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- functions 11 Jan 2004 14:43:04 -0000 1.47 +++ functions 11 Jan 2004 15:17:01 -0000 1.48 @@ -141,6 +141,14 @@ TEXT=$3 VARIABLE=$4 + echo $VARIABLE >> $WORKDIR/.menuok + + if [ "$TYPE" = "list" ];then + if [ -z "$(grep "$VARIABLE=" $BUILD_CONFIG-tmp 2> /dev/null)" ];then + echo $VARIABLE=$SET >> $BUILD_CONFIG-tmp + fi + fi + MENU="" MENUOLD="" X="Main|${1// /___}" @@ -238,7 +246,6 @@ ;; esac fi - echo $VARIABLE >> $WORKDIR/.menuok } menu_display () Index: menuconfig =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/menuconfig,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- menuconfig 11 Jan 2004 14:43:04 -0000 1.29 +++ menuconfig 11 Jan 2004 15:17:02 -0000 1.30 @@ -102,7 +102,7 @@ VALUE=$(echo $CHOICE | cut -f 3 -d " " ) case $TYPE in bool ) - grep -v $VAR $BUILD_CONFIG-tmp >> $BUILD_CONFIG-tmp2 + grep -v "$VAR=" $BUILD_CONFIG-tmp >> $BUILD_CONFIG-tmp2 cp $BUILD_CONFIG-tmp2 $BUILD_CONFIG-tmp rm $BUILD_CONFIG-tmp2 eval SET=\$$VAR @@ -115,7 +115,7 @@ ;; listsel ) - grep -v $VAR $BUILD_CONFIG-tmp >> $BUILD_CONFIG-tmp2 + grep -v "$VAR=" $BUILD_CONFIG-tmp >> $BUILD_CONFIG-tmp2 cp $BUILD_CONFIG-tmp2 $BUILD_CONFIG-tmp rm $BUILD_CONFIG-tmp2 echo $VAR=$VALUE >> $BUILD_CONFIG-tmp |
From: <smi...@us...> - 2004-01-11 15:17:04
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv26169 Modified Files: CHANGES Log Message: - menuconfig now correctly sets any missing list values in the config file Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.641 retrieving revision 1.642 diff -u -d -r1.641 -r1.642 --- CHANGES 11 Jan 2004 14:43:03 -0000 1.641 +++ CHANGES 11 Jan 2004 15:17:01 -0000 1.642 @@ -22,6 +22,7 @@ # 1.1.2 +- menuconfig now correctly sets any missing list values in the config file - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 - fixed named start problem when jail disabled (fl) |
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv16846/scripts Modified Files: LVM Libnet MOSIX MOSKRN Mail-SpamAssassin Python acl alsa-driver alsa-lib alsa-utils alsaplayer arpwatch attr autoconf automake bash beep bind bing binutils bison bridge-utils build-etc build.sh busybox bzip2 camsource cd_cleanup cdrtools cfg_runlevel chpax cipe clamav compartment copy_base copy_libs coreutils cpio cpqarrayd cramfs create_cd_dirs create_etc cron cutter cvs cyrus-imapd cyrus-sasl daemontools db-4 ddt ddup devfsd devildoc dhcp dhcpcd dialog diffutils distcc djbdns dosfstools dovecot e100 e1000 e2fsprogs ebtables ethtool expat ez-ipupdate fam fblogo fetchmail file finalize findutils freeramdisk functions fwlogwatch gawk gcc gd gdbm glib glibc gmp gnupg grep groff grsecurity grub gzip hdparm heimdal hostap-driver hostap-utils hostapd hotplug httpd i2c iANS imap insserv ipac-ng ipcalc iproute2 iptables iptraf iptstate iputils isapnptools jfsutils jftpgw joe jpeg kbd l2tpd less lftp lha libgcrypt libiconv libmad libmcrypt libol libpcap libpng libsafe libstdc++-compat libtool libusb libxml2 libxslt lilo linux linux-wlan-ng lm_sensors loadlin logrotate loop-AES lsof lynx lzo make makedepend man man-pages mc mcrypt mdadm memtest86 menuconfig mgetty mhash minicom modutils mtools mtr mysql nail nano nasm ncftp ncurses net-snmp net-tools netacct-mysql noip_updater ntp oidentd openh323 openh323gk openldap openssh openssl openvpn opt passwdgen patch-o-matic pciutils pcmcia-cs pcre pcwd pd-cvs perl php pkgconfig popt poptop portmap portslave postfix postgresql ppp pptp-linux pptp-patches prepare prism54 procinfo procps psmisc pwlib python-ldap qadsl quota-tools raidtools rcs readline reiserfsprogs rp-pppoe rpm rrlogind rsync sagator samba sarg screen sed setfiledates setserial settings sg3_utils shadow shorewall smartmontools snort squid strace stunnel super-freeswan sysklogd syslinux syslog-ng sysstat sysvinit tar tcp_wrappers tcpdump telnet-bsd thttpd tiff traceroute uClibc ucspi-tcp unarj unrar unzip usbat-02 usbutils util-linux vim vlan vsftpd vtun watchdog wget which whois wireless_tools wvdial wvstreams xfsprogs xinetd yp-tools ypbind-mt ypserv zebra zip zisofs-tools zlib Log Message: - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 Index: LVM =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/LVM,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- LVM 13 Oct 2003 17:36:07 -0000 1.13 +++ LVM 11 Jan 2004 14:43:04 -0000 1.14 @@ -22,10 +22,8 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=LVM -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: Libnet =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Libnet,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Libnet 3 Nov 2003 19:35:41 -0000 1.6 +++ Libnet 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: MOSIX =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/MOSIX,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- MOSIX 13 Oct 2003 17:36:07 -0000 1.7 +++ MOSIX 11 Jan 2004 14:43:04 -0000 1.8 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=MOSIX_UTILS Index: MOSKRN =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/MOSKRN,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- MOSKRN 13 Oct 2003 17:36:07 -0000 1.4 +++ MOSKRN 11 Jan 2004 14:43:04 -0000 1.5 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: Mail-SpamAssassin =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Mail-SpamAssassin,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Mail-SpamAssassin 13 Oct 2003 17:36:07 -0000 1.7 +++ Mail-SpamAssassin 11 Jan 2004 14:43:04 -0000 1.8 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=SPAMASSASSIN Index: Python =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/Python,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- Python 31 Dec 2003 02:28:05 -0000 1.17 +++ Python 11 Jan 2004 14:43:04 -0000 1.18 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=PYTHON Index: acl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/acl,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- acl 13 Oct 2003 17:36:07 -0000 1.14 +++ acl 11 Jan 2004 14:43:04 -0000 1.15 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=XFS_UTIL Index: alsa-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsa-driver,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- alsa-driver 5 Jan 2004 18:51:44 -0000 1.10 +++ alsa-driver 11 Jan 2004 14:43:04 -0000 1.11 @@ -24,9 +24,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) MYNAME=ALSA-DRIVER Index: alsa-lib =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsa-lib,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- alsa-lib 5 Jan 2004 18:51:44 -0000 1.7 +++ alsa-lib 11 Jan 2004 14:43:04 -0000 1.8 @@ -24,9 +24,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) MYNAME=ALSA-LIB Index: alsa-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsa-utils,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- alsa-utils 7 Jan 2004 22:27:20 -0000 1.7 +++ alsa-utils 11 Jan 2004 14:43:04 -0000 1.8 @@ -24,9 +24,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) MYNAME=ALSA-UTILS Index: alsaplayer =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/alsaplayer,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- alsaplayer 6 Jan 2004 12:52:27 -0000 1.3 +++ alsaplayer 11 Jan 2004 14:43:04 -0000 1.4 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ALSA_PLAYER Index: arpwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/arpwatch,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- arpwatch 13 Oct 2003 17:36:07 -0000 1.16 +++ arpwatch 11 Jan 2004 14:43:04 -0000 1.17 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ARPWATCH Index: attr =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/attr,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- attr 13 Oct 2003 17:36:07 -0000 1.10 +++ attr 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: autoconf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/autoconf,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- autoconf 20 Dec 2003 02:05:17 -0000 1.1 +++ autoconf 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: automake =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/automake,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- automake 20 Dec 2003 02:05:17 -0000 1.1 +++ automake 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: bash =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bash,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- bash 13 Oct 2003 17:36:07 -0000 1.5 +++ bash 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: beep =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/beep,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- beep 13 Oct 2003 17:36:07 -0000 1.16 +++ beep 11 Jan 2004 14:43:04 -0000 1.17 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: bind =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bind,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- bind 13 Oct 2003 17:36:07 -0000 1.27 +++ bind 11 Jan 2004 14:43:04 -0000 1.28 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ISC_BIND Index: bing =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bing,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- bing 31 Dec 2003 21:58:50 -0000 1.1 +++ bing 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: binutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/binutils,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- binutils 28 Dec 2003 01:48:37 -0000 1.8 +++ binutils 11 Jan 2004 14:43:04 -0000 1.9 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=BINUTILS Index: bison =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bison,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- bison 13 Oct 2003 17:36:07 -0000 1.5 +++ bison 11 Jan 2004 14:43:04 -0000 1.6 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=BISON Index: bridge-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bridge-utils,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- bridge-utils 15 Nov 2003 01:52:06 -0000 1.13 +++ bridge-utils 11 Jan 2004 14:43:04 -0000 1.14 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=BRIDGE_UTILS Index: build-etc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build-etc,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- build-etc 29 Mar 2003 00:27:32 -0000 1.7 +++ build-etc 11 Jan 2004 14:43:04 -0000 1.8 @@ -13,7 +13,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions pushd $ETCDIR > /dev/null Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.66 retrieving revision 1.67 diff -u -d -r1.66 -r1.67 --- build.sh 27 Dec 2003 14:40:50 -0000 1.66 +++ build.sh 11 Jan 2004 14:43:04 -0000 1.67 @@ -17,7 +17,6 @@ source settings source functions -KERNELDIR=$(find_src_dir linux) # make sure /proc is mounted correct umount /proc Index: busybox =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/busybox,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- busybox 13 Oct 2003 17:36:07 -0000 1.21 +++ busybox 11 Jan 2004 14:43:04 -0000 1.22 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: bzip2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/bzip2,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- bzip2 13 Oct 2003 17:36:07 -0000 1.10 +++ bzip2 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions fixbz2 () { Index: camsource =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/camsource,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- camsource 13 Oct 2003 17:36:07 -0000 1.4 +++ camsource 11 Jan 2004 14:43:04 -0000 1.5 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CAMSOURCE Index: cd_cleanup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cd_cleanup,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cd_cleanup 2 Dec 2003 16:13:41 -0000 1.6 +++ cd_cleanup 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in install ) Index: cdrtools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cdrtools,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- cdrtools 13 Oct 2003 17:36:08 -0000 1.5 +++ cdrtools 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: cfg_runlevel =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cfg_runlevel,v retrieving revision 1.29 retrieving revision 1.30 diff -u -d -r1.29 -r1.30 --- cfg_runlevel 13 Oct 2003 17:36:08 -0000 1.29 +++ cfg_runlevel 11 Jan 2004 14:43:04 -0000 1.30 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in install ) Index: chpax =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/chpax,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- chpax 13 Oct 2003 17:36:08 -0000 1.6 +++ chpax 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: cipe =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cipe,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- cipe 3 Jan 2004 14:49:09 -0000 1.17 +++ cipe 11 Jan 2004 14:43:04 -0000 1.18 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CIPE Index: clamav =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/clamav,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- clamav 13 Oct 2003 17:36:08 -0000 1.8 +++ clamav 11 Jan 2004 14:43:04 -0000 1.9 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=USBUTILS Index: compartment =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/compartment,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- compartment 3 Nov 2003 19:35:41 -0000 1.13 +++ compartment 11 Jan 2004 14:43:04 -0000 1.14 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: copy_base =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/copy_base,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- copy_base 17 Oct 2003 21:00:51 -0000 1.19 +++ copy_base 11 Jan 2004 14:43:04 -0000 1.20 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions function do_copy() { Index: copy_libs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/copy_libs,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- copy_libs 13 Oct 2003 17:36:08 -0000 1.17 +++ copy_libs 11 Jan 2004 14:43:04 -0000 1.18 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions # check which libs are needed by the binaries in the directory $1 and copy them to $2 # but check against directories $3 & $4, if lib is found there, dont copy it Index: coreutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/coreutils,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- coreutils 6 Nov 2003 16:35:59 -0000 1.6 +++ coreutils 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: cpio =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cpio,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cpio 13 Oct 2003 17:36:08 -0000 1.6 +++ cpio 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: cpqarrayd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cpqarrayd,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- cpqarrayd 13 Oct 2003 17:36:08 -0000 1.9 +++ cpqarrayd 11 Jan 2004 14:43:04 -0000 1.10 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CPQARRAYD Index: cramfs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cramfs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- cramfs 13 Oct 2003 17:36:08 -0000 1.3 +++ cramfs 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: create_cd_dirs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_cd_dirs,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- create_cd_dirs 10 Nov 2003 00:58:36 -0000 1.25 +++ create_cd_dirs 11 Jan 2004 14:43:04 -0000 1.26 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in install ) Index: create_etc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/create_etc,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- create_etc 13 Oct 2003 17:36:08 -0000 1.13 +++ create_etc 11 Jan 2004 14:43:04 -0000 1.14 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in install ) Index: cron =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cron,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- cron 13 Oct 2003 17:36:08 -0000 1.18 +++ cron 11 Jan 2004 14:43:04 -0000 1.19 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CRON Index: cutter =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cutter,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cutter 13 Oct 2003 17:36:08 -0000 1.6 +++ cutter 11 Jan 2004 14:43:04 -0000 1.7 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CUTTER Index: cvs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cvs,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- cvs 13 Oct 2003 17:36:08 -0000 1.6 +++ cvs 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CVS Index: cyrus-imapd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cyrus-imapd,v retrieving revision 1.21 retrieving revision 1.22 diff -u -d -r1.21 -r1.22 --- cyrus-imapd 5 Jan 2004 21:33:15 -0000 1.21 +++ cyrus-imapd 11 Jan 2004 14:43:04 -0000 1.22 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CYRUS_IMAPD Index: cyrus-sasl =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/cyrus-sasl,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- cyrus-sasl 13 Oct 2003 17:36:08 -0000 1.12 +++ cyrus-sasl 11 Jan 2004 14:43:04 -0000 1.13 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=CYRUS_SASL Index: daemontools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/daemontools,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- daemontools 13 Oct 2003 17:36:08 -0000 1.8 +++ daemontools 11 Jan 2004 14:43:04 -0000 1.9 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DAEMONTOOLS Index: db-4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/db-4,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- db-4 4 Jan 2004 03:27:51 -0000 1.5 +++ db-4 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: ddt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ddt,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- ddt 5 Jan 2004 18:51:44 -0000 1.14 +++ ddt 11 Jan 2004 14:43:04 -0000 1.15 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DDT Index: ddup =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ddup,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ddup 13 Oct 2003 17:36:08 -0000 1.9 +++ ddup 11 Jan 2004 14:43:04 -0000 1.10 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DDUP Index: devfsd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devfsd,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- devfsd 13 Oct 2003 17:36:08 -0000 1.3 +++ devfsd 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: devildoc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/devildoc,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- devildoc 19 Dec 2003 00:29:51 -0000 1.11 +++ devildoc 11 Jan 2004 14:43:04 -0000 1.12 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: dhcp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dhcp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- dhcp 13 Oct 2003 17:36:08 -0000 1.18 +++ dhcp 11 Jan 2004 14:43:04 -0000 1.19 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ISC_DHCP Index: dhcpcd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dhcpcd,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- dhcpcd 13 Oct 2003 17:36:08 -0000 1.11 +++ dhcpcd 11 Jan 2004 14:43:04 -0000 1.12 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: dialog =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dialog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- dialog 13 Oct 2003 17:36:08 -0000 1.4 +++ dialog 11 Jan 2004 14:43:04 -0000 1.5 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: diffutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/diffutils,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- diffutils 13 Oct 2003 17:36:08 -0000 1.8 +++ diffutils 11 Jan 2004 14:43:04 -0000 1.9 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DIFFUTILS Index: distcc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/distcc,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- distcc 13 Oct 2003 17:36:08 -0000 1.14 +++ distcc 11 Jan 2004 14:43:04 -0000 1.15 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DISTCCD Index: djbdns =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/djbdns,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- djbdns 13 Oct 2003 17:36:08 -0000 1.12 +++ djbdns 11 Jan 2004 14:43:04 -0000 1.13 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DJBDNS Index: dosfstools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dosfstools,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- dosfstools 13 Oct 2003 17:36:08 -0000 1.5 +++ dosfstools 11 Jan 2004 14:43:04 -0000 1.6 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DOSFSTOOLS Index: dovecot =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/dovecot,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- dovecot 13 Oct 2003 17:36:08 -0000 1.10 +++ dovecot 11 Jan 2004 14:43:04 -0000 1.11 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=DOVECOT Index: e100 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e100,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- e100 29 Dec 2003 19:35:59 -0000 1.10 +++ e100 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: e1000 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e1000,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- e1000 29 Dec 2003 19:35:59 -0000 1.10 +++ e1000 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: e2fsprogs =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/e2fsprogs,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- e2fsprogs 13 Oct 2003 17:36:08 -0000 1.15 +++ e2fsprogs 11 Jan 2004 14:43:04 -0000 1.16 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: ebtables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ebtables,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ebtables 29 Dec 2003 19:35:59 -0000 1.4 +++ ebtables 11 Jan 2004 14:43:04 -0000 1.5 @@ -22,14 +22,12 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=BRIDGE_UTILS case $1 in build ) if [ "$CONFIG_EBTABLES" = "y" ]; then - KERNELDIR=$(find_src_dir linux) zcat $DL_DIR/src/ebtables-brnf-*.diff.gz | patch -p 1 -d $KERNELDIR || exit 1 # update kernel config Index: ethtool =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ethtool,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- ethtool 13 Oct 2003 17:36:08 -0000 1.8 +++ ethtool 11 Jan 2004 14:43:04 -0000 1.9 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ETHTOOL Index: expat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/expat,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- expat 14 Oct 2003 20:47:03 -0000 1.2 +++ expat 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: ez-ipupdate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ez-ipupdate,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ez-ipupdate 13 Oct 2003 17:36:08 -0000 1.7 +++ ez-ipupdate 11 Jan 2004 14:43:04 -0000 1.8 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=EZ_IPUPDATE Index: fam =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fam,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fam 13 Oct 2003 17:36:08 -0000 1.3 +++ fam 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: fblogo =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fblogo,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- fblogo 20 Dec 2003 16:16:27 -0000 1.3 +++ fblogo 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: fetchmail =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fetchmail,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- fetchmail 13 Oct 2003 17:36:08 -0000 1.8 +++ fetchmail 11 Jan 2004 14:43:04 -0000 1.9 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=FETCHMAIL Index: file =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/file,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- file 13 Oct 2003 17:36:08 -0000 1.3 +++ file 11 Jan 2004 14:43:04 -0000 1.4 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=FILE Index: finalize =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/finalize,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- finalize 17 Dec 2003 22:38:41 -0000 1.5 +++ finalize 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in install ) Index: findutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/findutils,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- findutils 9 Nov 2003 18:46:51 -0000 1.9 +++ findutils 11 Jan 2004 14:43:04 -0000 1.10 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: freeramdisk =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/freeramdisk,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- freeramdisk 13 Oct 2003 17:36:08 -0000 1.6 +++ freeramdisk 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: functions =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/functions,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- functions 27 Dec 2003 14:51:14 -0000 1.46 +++ functions 11 Jan 2004 14:43:04 -0000 1.47 @@ -328,7 +328,6 @@ # Configure script. # function get_kernel_help () { - KERNELDIR=$(find_src_dir linux) if [ -f $KERNELDIR/Documentation/Configure.help ] then #first escape regexp special characters in the argument: Index: fwlogwatch =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/fwlogwatch,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- fwlogwatch 13 Oct 2003 17:36:08 -0000 1.8 +++ fwlogwatch 11 Jan 2004 14:43:04 -0000 1.9 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=FWLOGWATCH Index: gawk =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gawk,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- gawk 13 Oct 2003 17:36:08 -0000 1.7 +++ gawk 11 Jan 2004 14:43:04 -0000 1.8 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: gcc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- gcc 29 Dec 2003 19:35:59 -0000 1.15 +++ gcc 11 Jan 2004 14:43:04 -0000 1.16 @@ -21,11 +21,9 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=GCC3 -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: gd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- gd 4 Jan 2004 00:03:58 -0000 1.2 +++ gd 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: gdbm =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gdbm,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gdbm 13 Oct 2003 17:36:08 -0000 1.8 +++ gdbm 11 Jan 2004 14:43:04 -0000 1.9 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: glib =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glib,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- glib 1 Jan 2004 14:47:04 -0000 1.6 +++ glib 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: glibc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/glibc,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- glibc 6 Jan 2004 19:26:48 -0000 1.25 +++ glibc 11 Jan 2004 14:43:04 -0000 1.26 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: gmp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gmp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- gmp 13 Oct 2003 17:36:08 -0000 1.11 +++ gmp 11 Jan 2004 14:43:04 -0000 1.12 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: gnupg =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gnupg,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- gnupg 13 Oct 2003 17:36:08 -0000 1.10 +++ gnupg 11 Jan 2004 14:43:04 -0000 1.11 @@ -23,7 +23,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=GNUPG Index: grep =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grep,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- grep 20 Dec 2003 01:39:46 -0000 1.1 +++ grep 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: groff =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/groff,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- groff 13 Oct 2003 17:36:08 -0000 1.9 +++ groff 11 Jan 2004 14:43:04 -0000 1.10 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: grsecurity =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grsecurity,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- grsecurity 13 Oct 2003 17:36:08 -0000 1.13 +++ grsecurity 11 Jan 2004 14:43:04 -0000 1.14 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) GRADMDIR=$(find_src_dir gradm) case $1 in Index: grub =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/grub,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- grub 3 Nov 2003 19:35:41 -0000 1.7 +++ grub 11 Jan 2004 14:43:04 -0000 1.8 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME="GRUB" Index: gzip =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gzip,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- gzip 2 Nov 2003 16:59:44 -0000 1.8 +++ gzip 11 Jan 2004 14:43:04 -0000 1.9 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: hdparm =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hdparm,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- hdparm 13 Oct 2003 17:36:08 -0000 1.11 +++ hdparm 11 Jan 2004 14:43:04 -0000 1.12 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: heimdal =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/heimdal,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- heimdal 3 Nov 2003 19:35:41 -0000 1.5 +++ heimdal 11 Jan 2004 14:43:04 -0000 1.6 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=HEIMDAL Index: hostap-driver =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hostap-driver,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- hostap-driver 8 Jan 2004 01:47:38 -0000 1.1 +++ hostap-driver 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) PCMCIADIR=$(find_src_dir pcmcia-cs) HOSTAPDRIVERDIR=$(find_src_dir hostapi-driver) MYNAME="HOSTAP_DRIVER" Index: hostap-utils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hostap-utils,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- hostap-utils 8 Jan 2004 01:47:38 -0000 1.1 +++ hostap-utils 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions HOSTAPUTILSDIR=$(find_src_dir hostap-utils) MYNAME="HOSTAP_UTILS" Index: hostapd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hostapd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- hostapd 8 Jan 2004 01:47:38 -0000 1.1 +++ hostapd 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions HOSTAPDDIR=$(find_src_dir hostapd) MYNAME="HOSTAPD" Index: hotplug =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/hotplug,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- hotplug 31 Dec 2003 01:32:26 -0000 1.9 +++ hotplug 11 Jan 2004 14:43:04 -0000 1.10 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=HOTPLUG Index: httpd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/httpd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- httpd 22 Dec 2003 21:59:54 -0000 1.2 +++ httpd 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=APACHE2 Index: i2c =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/i2c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- i2c 17 Dec 2003 14:55:47 -0000 1.3 +++ i2c 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: iANS =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iANS,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- iANS 29 Dec 2003 19:35:59 -0000 1.14 +++ iANS 11 Jan 2004 14:43:04 -0000 1.15 @@ -22,10 +22,8 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=IANS -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: imap =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/imap,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- imap 31 Dec 2003 15:24:15 -0000 1.3 +++ imap 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: insserv =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/insserv,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- insserv 17 Dec 2003 14:55:47 -0000 1.10 +++ insserv 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: ipac-ng =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ipac-ng,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- ipac-ng 13 Oct 2003 17:36:08 -0000 1.9 +++ ipac-ng 11 Jan 2004 14:43:04 -0000 1.10 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=IPAC_NG Index: ipcalc =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/ipcalc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ipcalc 30 Oct 2003 21:48:12 -0000 1.1 +++ ipcalc 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: iproute2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iproute2,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- iproute2 13 Oct 2003 17:36:08 -0000 1.19 +++ iproute2 11 Jan 2004 14:43:04 -0000 1.20 @@ -22,10 +22,8 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=IPROUTE2 -KERNELDIR=$(find_src_dir linux) OLDINCLUDEDIR=$(find_src_dir 2.4.21-include) case $1 in Index: iptables =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptables,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- iptables 30 Dec 2003 17:58:44 -0000 1.24 +++ iptables 11 Jan 2004 14:43:04 -0000 1.25 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: iptraf =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptraf,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- iptraf 13 Oct 2003 17:36:08 -0000 1.10 +++ iptraf 11 Jan 2004 14:43:04 -0000 1.11 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=IPTRAF Index: iptstate =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iptstate,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- iptstate 13 Oct 2003 17:36:08 -0000 1.3 +++ iptstate 11 Jan 2004 14:43:04 -0000 1.4 @@ -24,7 +24,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=IPTSTATE Index: iputils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/iputils,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- iputils 13 Oct 2003 17:36:08 -0000 1.6 +++ iputils 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions OLDINCLUDEDIR=$(find_src_dir 2.4.21-include) case $1 in Index: isapnptools =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/isapnptools,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- isapnptools 10 Nov 2003 23:33:29 -0000 1.1 +++ isapnptools 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=ISAPNPTOOLS Index: jfsutils =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/jfsutils,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- jfsutils 13 Oct 2003 17:36:08 -0000 1.7 +++ jfsutils 11 Jan 2004 14:43:04 -0000 1.8 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: jftpgw =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/jftpgw,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- jftpgw 13 Oct 2003 17:36:08 -0000 1.14 +++ jftpgw 11 Jan 2004 14:43:04 -0000 1.15 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=JFTPGW Index: joe =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/joe,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- joe 13 Oct 2003 17:36:08 -0000 1.14 +++ joe 11 Jan 2004 14:43:04 -0000 1.15 @@ -23,7 +23,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=JOE Index: jpeg =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/jpeg,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- jpeg 13 Oct 2003 17:36:08 -0000 1.2 +++ jpeg 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: kbd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/kbd,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- kbd 23 Nov 2003 11:27:39 -0000 1.2 +++ kbd 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: l2tpd =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/l2tpd,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- l2tpd 26 Dec 2003 18:45:47 -0000 1.1 +++ l2tpd 11 Jan 2004 14:43:04 -0000 1.2 @@ -19,7 +19,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=L2TPD L2TPDPATCHDIR=$WORKDIR/l2tpd-patches Index: less =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/less,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- less 13 Oct 2003 17:36:08 -0000 1.6 +++ less 11 Jan 2004 14:43:04 -0000 1.7 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: lftp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/lftp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- lftp 13 Oct 2003 17:36:08 -0000 1.6 +++ lftp 11 Jan 2004 14:43:04 -0000 1.7 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=LFTP Index: lha =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/lha,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- lha 13 Oct 2003 17:36:08 -0000 1.3 +++ lha 11 Jan 2004 14:43:04 -0000 1.4 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libgcrypt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libgcrypt,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libgcrypt 13 Oct 2003 17:36:08 -0000 1.5 +++ libgcrypt 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libiconv =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libiconv,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libiconv 31 Dec 2003 21:35:50 -0000 1.1 +++ libiconv 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libmad =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libmad,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libmad 7 Dec 2003 16:18:54 -0000 1.1 +++ libmad 11 Jan 2004 14:43:04 -0000 1.2 @@ -17,7 +17,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libmcrypt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libmcrypt,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libmcrypt 13 Oct 2003 17:36:08 -0000 1.5 +++ libmcrypt 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libol =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libol,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- libol 13 Oct 2003 17:36:08 -0000 1.9 +++ libol 11 Jan 2004 14:43:04 -0000 1.10 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libpcap =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libpcap,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- libpcap 13 Oct 2003 17:36:08 -0000 1.12 +++ libpcap 11 Jan 2004 14:43:04 -0000 1.13 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libpng =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libpng,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- libpng 21 Dec 2003 04:06:09 -0000 1.3 +++ libpng 11 Jan 2004 14:43:04 -0000 1.4 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libsafe =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libsafe,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libsafe 24 Dec 2003 19:38:54 -0000 1.1 +++ libsafe 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libstdc++-compat =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libstdc++-compat,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- libstdc++-compat 13 Oct 2003 17:36:08 -0000 1.6 +++ libstdc++-compat 11 Jan 2004 14:43:04 -0000 1.7 @@ -21,7 +21,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=LIBSTDC_COMPAT Index: libtool =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libtool,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libtool 28 Dec 2003 01:45:30 -0000 1.5 +++ libtool 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libusb =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libusb,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- libusb 13 Oct 2003 17:36:08 -0000 1.5 +++ libusb 11 Jan 2004 14:43:04 -0000 1.6 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libxml2 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libxml2,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- libxml2 13 Oct 2003 17:36:08 -0000 1.2 +++ libxml2 11 Jan 2004 14:43:04 -0000 1.3 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: libxslt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libxslt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- libxslt 16 Oct 2003 02:21:36 -0000 1.1 +++ libxslt 11 Jan 2004 14:43:04 -0000 1.2 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: lilo =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/lilo,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- lilo 27 Dec 2003 14:40:50 -0000 1.7 +++ lilo 11 Jan 2004 14:43:04 -0000 1.8 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: linux =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- linux 29 Dec 2003 19:35:59 -0000 1.49 +++ linux 11 Jan 2004 14:43:04 -0000 1.50 @@ -22,7 +22,6 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions case $1 in build ) Index: linux-wlan-ng =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/linux-wlan-ng,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- linux-wlan-ng 29 Dec 2003 19:35:59 -0000 1.12 +++ linux-wlan-ng 11 Jan 2004 14:43:04 -0000 1.13 @@ -22,9 +22,7 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions -KERNELDIR=$(find_src_dir linux) PCMCIADIR=$(find_src_dir pcmcia-cs) MYNAME="LINUX_WLAN_NG" Index: lm_sensors =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/lm_sensors,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- lm_sensors 28 Dec 2003 22:31:01 -0000 1.11 +++ lm_sensors 11 Jan 2004 14:43:04 -0000 1.12 @@ -22,11 +22,9 @@ # source functions and config source $MYDIR/settings -source $MYDIR/functions MYNAME=LM_SENSORS -KERNELDIR=$(find_src_dir linux) case $1 in build ) Index: loadl... [truncated message content] |
From: <smi...@us...> - 2004-01-11 14:43:09
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv16846/scripts/configuration Modified Files: gcc.config grsecurity.config linux.config usbat-02.config xfsprogs.config Log Message: - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 Index: gcc.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/gcc.config,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- gcc.config 27 Dec 2003 03:17:17 -0000 1.6 +++ gcc.config 11 Jan 2004 14:43:05 -0000 1.7 @@ -5,9 +5,9 @@ # http://www.devil-linux.org menu_add "System|Programming" bool "GCC3" CONFIG_GCC3 -menu_add "Build Configuration|Security" bool "GCC Stack Smashing Protector" CONFIG_GCC_STACK_PROTECTOR -menu_add "Build Configuration|Security" bool "GCC enable Position Independent Executables" CONFIG_GCC_PIE -if [ "$CONFIG_GRSECURITY" = "y" ]; then +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Build Configuration|Security" bool "GCC Stack Smashing Protector" CONFIG_GCC_STACK_PROTECTOR +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "Build Configuration|Security" bool "GCC enable Position Independent Executables" CONFIG_GCC_PIE +if [ "$CONFIG_GRSECURITY" = "y" ] && [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then menu_add "Build Configuration|Security" bool "GCC compile programs as ET_DYN (EXPERIMENTAL)" CONFIG_GCC_ET_DYN fi Index: grsecurity.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/grsecurity.config,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- grsecurity.config 24 Dec 2003 23:14:37 -0000 1.3 +++ grsecurity.config 11 Jan 2004 14:43:05 -0000 1.4 @@ -5,4 +5,9 @@ # # http://www.devil-linux.org -[ "$CONFIG_XFS" = "y" ] || menu_add "Build Configuration|Security" bool "GRSecurity Patch (enhances system security and will break XFS)" CONFIG_GRSECURITY +if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then + if [ ! "$CONFIG_XFS" = "y" ]; then + menu_add "Build Configuration|Security" bool "GRSecurity Patch (enhances system security and will break XFS)" CONFIG_GRSECURITY + fi +fi + Index: linux.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/linux.config,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- linux.config 24 Dec 2003 23:14:37 -0000 1.9 +++ linux.config 11 Jan 2004 14:43:05 -0000 1.10 @@ -6,6 +6,8 @@ # http://www.devil-linux.org test -z "$CONFIG_LINUX_NR_CPUS" && CONFIG_LINUX_NR_CPUS=4 +test -z "$CONFIG_LINUX_VERSION" && CONFIG_LINUX_VERSION=2.4 menu_add "Build Configuration|Processor and Memory" bool "Symmetric multi-processing support" CONFIG_LINUX_SMP menu_add "Build Configuration|Processor and Memory" list "Maximum number of CPUs" CONFIG_LINUX_NR_CPUS 2 4 8 16 32 -menu_add "System|Hardware Support" bool "Update Philips USB Webcam Kernel Driver (pwc) EXPERIMENTAL" CONFIG_LINUX_UPDATE_PWC +menu_add "Build Configuration" list "Kernel Version" CONFIG_LINUX_VERSION 2.4 2.6 +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "System|Hardware Support" bool "Update Philips USB Webcam Kernel Driver (pwc) EXPERIMENTAL" CONFIG_LINUX_UPDATE_PWC Index: usbat-02.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/usbat-02.config,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- usbat-02.config 17 Dec 2003 14:55:47 -0000 1.1 +++ usbat-02.config 11 Jan 2004 14:43:05 -0000 1.2 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -menu_add "System|Hardware Support" bool "USBAT-02 based USB CF card readers" CONFIG_USBAT02 +test "$CONFIG_LINUX_VERSION" = "2.4" && menu_add "System|Hardware Support" bool "USBAT-02 based USB CF card readers" CONFIG_USBAT02 Index: xfsprogs.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/xfsprogs.config,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- xfsprogs.config 17 Dec 2003 14:55:47 -0000 1.3 +++ xfsprogs.config 11 Jan 2004 14:43:05 -0000 1.4 @@ -5,4 +5,9 @@ # # http://www.devil-linux.org -[ "$CONFIG_GRSECURITY" = "y" ] || menu_add "System|Filesystems" bool "XFS Support ( most likely BROKEN )" CONFIG_XFS +if [ "$CONFIG_LINUX_VERSION" = "2.4" ]; then + if [ ! "$CONFIG_GRSECURITY" = "y" ]; then + menu_add "System|Filesystems" bool "XFS Support ( most likely BROKEN )" CONFIG_XFS + fi +fi + |
From: <smi...@us...> - 2004-01-11 14:43:09
|
Update of /cvsroot/devil-linux/build/scripts/configuration/profiles In directory sc8-pr-cvs1:/tmp/cvs-serv16846/scripts/configuration/profiles Modified Files: default router Log Message: - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 Index: default =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/default,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- default 4 Jan 2004 03:27:52 -0000 1.5 +++ default 11 Jan 2004 14:43:05 -0000 1.6 @@ -28,13 +28,12 @@ CONFIG_FILE=y CONFIG_FWLOGWATCH=y CONFIG_GCC3=n -CONFIG_GCC_ET_DYN=y -CONFIG_GCC_PIE=y -CONFIG_GCC_STACK_PROTECTOR=y -CONFIG_GRSECURITY=y CONFIG_HEIMDAL=y CONFIG_HIGHMEM=y CONFIG_HOSTAP=y +CONFIG_HOSTAPD=y +CONFIG_HOSTAP_DRIVER=y +CONFIG_HOSTAP_UTILS=y CONFIG_HOTPLUG=y CONFIG_HTTPD=y CONFIG_IANS=y @@ -56,6 +55,7 @@ CONFIG_LINUX_NR_CPUS=4 CONFIG_LINUX_SMP=y CONFIG_LINUX_UPDATE_PWC=n +CONFIG_LINUX_VERSION=2.4 CONFIG_LINUX_WLAN_NG=y CONFIG_LM_SENSORS=y CONFIG_LOGROTATE=y @@ -68,6 +68,7 @@ CONFIG_MGETTY=y CONFIG_MINICOM=y CONFIG_MTOOLS=y +CONFIG_MTR=y CONFIG_MYSQL_CLIENT=y CONFIG_MYSQL_SERVER=y CONFIG_NAIL=y @@ -84,6 +85,7 @@ CONFIG_OPENH323=y CONFIG_OPENH323GK=y CONFIG_OPENLDAPLIB=y +CONFIG_OPENLDAP_FULL=y CONFIG_OPENSSH=y CONFIG_OPENSSL_BIN=y CONFIG_OPENVPN=y @@ -112,6 +114,7 @@ CONFIG_RPM=y CONFIG_RPPPPOE=y CONFIG_RRLOGIND=y +CONFIG_RSYNC=y CONFIG_SAGATOR=y CONFIG_SAMBA=y CONFIG_SARG=y @@ -148,4 +151,3 @@ CONFIG_ZEBRA=y CONFIG_ZIP=y CONFIG_ZISOFS=y -CONFIG_OPENLDAP_FULL=y Index: router =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/profiles/router,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- router 5 Jan 2004 22:58:23 -0000 1.6 +++ router 11 Jan 2004 14:43:05 -0000 1.7 @@ -116,3 +116,4 @@ CONFIG_ZISOFS=y CONFIG_KERNEL_CPU=486 CONFIG_CPU=486 +CONFIG_LINUX_VERSION=2.4 |
From: <smi...@us...> - 2004-01-11 14:43:07
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv16846 Modified Files: CHANGES replace Log Message: - some build system cleanups - added perliminary support to the build system for selection of Kernel 2.4 or 2.6 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.640 retrieving revision 1.641 diff -u -d -r1.640 -r1.641 --- CHANGES 9 Jan 2004 02:35:08 -0000 1.640 +++ CHANGES 11 Jan 2004 14:43:03 -0000 1.641 @@ -22,6 +22,8 @@ # 1.1.2 +- some build system cleanups +- added perliminary support to the build system for selection of Kernel 2.4 or 2.6 - fixed named start problem when jail disabled (fl) - updated hostap to v0.1.2 (Heiko / Emmanuel Escarabajal) - added mtr v0.54 (Heiko / Emmanuel Escarabajal) Index: replace =================================================================== RCS file: /cvsroot/devil-linux/build/replace,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- replace 20 Aug 2003 20:02:47 -0000 1.1 +++ replace 11 Jan 2004 14:43:04 -0000 1.2 @@ -1,16 +1,18 @@ #!/bin/bash -SEARCH="\$CDDIR/usr/share/doc" +SEARCH="source \$MYDIR/functions" REPLACE="\$DOCDIR" -echo "press any key to replace '$SEARCH' with '$REPLACE'" +#echo "press any key to replace '$SEARCH' with '$REPLACE'" +echo "press any key to remove all lines with '$SEARCH'" read -n 1 -rs ANS for FILE in $(grep -l "$SEARCH" scripts/*) do echo $FILE cp $FILE $FILE.old - sed -e s%"$SEARCH"%"$REPLACE"% $FILE.old > $FILE + #sed -e s%"$SEARCH"%"$REPLACE"% $FILE.old > $FILE + grep -v "$SEARCH" $FILE.old > $FILE rm $FILE.old done |
From: <fr...@us...> - 2004-01-11 03:15:29
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv15257 Modified Files: Tag: rel-1-0-patches openssh Log Message: backport typo fix from 1.1.x to 1.0.x Index: openssh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/openssh,v retrieving revision 1.24 retrieving revision 1.24.2.1 diff -u -d -r1.24 -r1.24.2.1 --- openssh 27 Aug 2003 02:31:01 -0000 1.24 +++ openssh 11 Jan 2004 03:15:22 -0000 1.24.2.1 @@ -37,6 +37,7 @@ cp $MYDIR/scripts/sshd $ETCDIR/etc/init.d || exit 1 rm -rf $WORKDIR/tmp || exit 1 + echo "# Start the OpenSSH daemon?" >> $CONFIGFILE echo "START_SSHD=no" >> $CONFIGFILE echo >> $CONFIGFILE echo "# additional command line options for SSHD" >> $CONFIGFILE |
From: <smi...@us...> - 2004-01-10 16:00:31
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv9523 Added Files: mtr Log Message: oops, forgott to check in the mtr scripts --- NEW FILE: mtr --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/mtr,v $ # $Revision: 1.1 $ # $Date: 2004/01/10 16:00:28 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: mtr # 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 MYNAME=MTR case $1 in build ) if [ "$CONFIG_MTR" = "y" ]; then ./configure --prefix=/usr --without-gtk || exit 1 make $PMAKE || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_MTR" = "y" ]; then cp -p mtr $CDDIR/usr/sbin || exit 1 chmod u+s $CDDIR/usr/sbin/mtr || exit 1 copy_man fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac |
From: <smi...@us...> - 2004-01-10 16:00:30
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs1:/tmp/cvs-serv9523/configuration/help Added Files: mtr.help Log Message: oops, forgott to check in the mtr scripts --- NEW FILE: mtr.help --- CONFIG_MTR mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool. As mtr starts, it investigates the network connection between the host mtr runs on and a user-specified destination host. After it determines the address of each network hop between the machines, it sends a sequence ICMP ECHO requests to each one to determine the quality of the link to each machine. As it does this, it prints running statistics about each machine. |
From: <smi...@us...> - 2004-01-10 16:00:30
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv9523/configuration Added Files: mtr.config Log Message: oops, forgott to check in the mtr scripts --- NEW FILE: mtr.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/mtr.config,v $ # $Revision: 1.1 $ # $Date: 2004/01/10 16:00:27 $ # http://www.devil-linux.org menu_add "Networking|Utilities" bool "Mtr combines 'traceroute' and 'ping' in a single network diagnostic tool." CONFIG_MTR |
From: <smi...@us...> - 2004-01-09 03:24:49
|
Update of /cvsroot/devil-linux/build/scripts/config In directory sc8-pr-cvs1:/tmp/cvs-serv9276/scripts/config 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.8 retrieving revision 1.9.2.9 diff -u -d -r1.9.2.8 -r1.9.2.9 --- VERSION 23 Dec 2003 17:17:39 -0000 1.9.2.8 +++ VERSION 9 Jan 2004 03:24:45 -0000 1.9.2.9 @@ -1 +1 @@ -1.0.4 +1.0.5 |
From: <fr...@us...> - 2004-01-09 02:35:11
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv3368 Modified Files: CHANGES Log Message: document my changes Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.639 retrieving revision 1.640 diff -u -d -r1.639 -r1.640 --- CHANGES 8 Jan 2004 01:47:38 -0000 1.639 +++ CHANGES 9 Jan 2004 02:35:08 -0000 1.640 @@ -22,6 +22,7 @@ # 1.1.2 +- fixed named start problem when jail disabled (fl) - updated hostap to v0.1.2 (Heiko / Emmanuel Escarabajal) - added mtr v0.54 (Heiko / Emmanuel Escarabajal) - init system now first searches all devices for configuration and then |
From: <fr...@us...> - 2004-01-09 02:33:18
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv3006 Modified Files: Tag: rel-1-0-patches CHANGES Log Message: document my changes and open up new version 1.0.5 Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.510.2.47 retrieving revision 1.510.2.48 diff -u -d -r1.510.2.47 -r1.510.2.48 --- CHANGES 6 Jan 2004 02:38:13 -0000 1.510.2.47 +++ CHANGES 9 Jan 2004 02:33:14 -0000 1.510.2.48 @@ -21,6 +21,8 @@ # # # +1.0.5 +- fixed named start problem when jail disabled (fl) 1.0.4 - removed gcc, binutils, distcc from standard |
From: <fr...@us...> - 2004-01-09 02:31:42
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2807 Modified Files: named Log Message: Dear Heiko, our jailer, wants to keep everybody in jail, even if they do not want to. Index: named =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/named,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- named 20 Aug 2003 19:15:35 -0000 1.9 +++ named 9 Jan 2004 02:31:35 -0000 1.10 @@ -24,7 +24,7 @@ CONFIGNAME=NAMED DAEMON=/usr/sbin/named PACKAGE_NAME=ISC_BIND -PARAMETER="-u named -t $JAIL_DIR/$PACKAGE_NAME -c /etc/named.conf" +PARAMETER="-u named -c /etc/named.conf" # source function library source /etc/init.d/functions @@ -40,16 +40,19 @@ test "$START" = "yes" || exit 0 case "$1" in - start) + start) if [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ]; then /etc/init.d/jail start $PACKAGE_NAME + PARAMETER="${PARAMETER} -t $JAIL_DIR/$PACKAGE_NAME" fi echo -n "Starting $NAME: " loadproc $DAEMON $PARAMETER ;; stop) echo -n "Shutting down $NAME: " - [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ] && /etc/init.d/jail stop $PACKAGE_NAME + if [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ]; then + /etc/init.d/jail stop $PACKAGE_NAME + fi killproc $DAEMON ;; restart) |
From: <fr...@us...> - 2004-01-09 02:29:02
|
Update of /cvsroot/devil-linux/build/scripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv2349 Modified Files: Tag: rel-1-0-patches named Log Message: Dear Heiko, our jailer, wants to keep everybody in jail, even if they do not want to. Index: named =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/scripts/named,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -u -d -r1.9 -r1.9.2.1 --- named 20 Aug 2003 19:15:35 -0000 1.9 +++ named 9 Jan 2004 02:28:59 -0000 1.9.2.1 @@ -24,7 +24,7 @@ CONFIGNAME=NAMED DAEMON=/usr/sbin/named PACKAGE_NAME=ISC_BIND -PARAMETER="-u named -t $JAIL_DIR/$PACKAGE_NAME -c /etc/named.conf" +PARAMETER="-u named -c /etc/named.conf" # source function library source /etc/init.d/functions @@ -40,16 +40,19 @@ test "$START" = "yes" || exit 0 case "$1" in - start) + start) if [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ]; then /etc/init.d/jail start $PACKAGE_NAME + PARAMETER="${PARAMETER} -t $JAIL_DIR/$PACKAGE_NAME" fi echo -n "Starting $NAME: " loadproc $DAEMON $PARAMETER ;; stop) echo -n "Shutting down $NAME: " - [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ] && /etc/init.d/jail stop $PACKAGE_NAME + if [ -f /etc/sysconfig/jail/$PACKAGE_NAME ] && [ "$JAIL_ENABLE" == yes ]; then + /etc/init.d/jail stop $PACKAGE_NAME + fi killproc $DAEMON ;; restart) |
From: <smi...@us...> - 2004-01-08 01:47:45
|
Update of /cvsroot/devil-linux/build/scripts/configuration/help In directory sc8-pr-cvs1:/tmp/cvs-serv14056/scripts/configuration/help Added Files: hostap-driver.help hostap-utils.help hostapd.help Removed Files: hostap.help Log Message: checked in scripts from manu --- NEW FILE: hostap-driver.help --- CONFIG_HOSTAP_DRIVER Host AP driver for Intersil Prism2/2.5/3 ======================================== This is a Linux driver for wireless LAN cards based on Intersil's Prism2/2.5/3 chipset. The driver supports a so called Host AP mode, i.e., it takes care of IEEE 802.11 management functions in the host computer and acts as an access point. This does not require any special firmware for the wireless LAN card. In addition to this, it has some support for normal station operations in BSS and possible also in IBSS. However, the orinoco_cs driver in current 2.4 kernel tree or pcmcia-cs package or linux-wlan-ng is probably better supported solution for cases that do not use Host AP mode. Intersil's station firmware for Prism2/2.5/3 chipset supports a so called Host AP mode in which the firmware takes care of time critical tasks like beacon sending and frame acknowledging, but leaves other management tasks to host computer driver. This driver implements basic functionality needed to initialize and configure Prism2/2.5/3-based cards, to send and receive frames, and to gather statistics. In addition, it includes an implementation of following IEEE 802.11 functions: authentication (and deauthentication), association (reassociation, and disassociation), data transmission between two wireless stations, power saving (PS) mode signaling and frame buffering for PS stations. The driver has also various features for development debugging and for researching IEEE 802.11 environments like access to hardware configuration records, I/O registers, and frames with 802.11 headers. --- NEW FILE: hostap-utils.help --- CONFIG_HOSTAP_UTILS Utility programs for Host AP driver for Intersil Prism2/2.5/3 ============================================================= hostap_crypt_conf ================= hostap_crypt_conf is a tool for configuring encryption keys to the Host AP driver. It extends the features of iwconfig by supporting individual per STA keys and support more than one encryption algorithm. hostap_diag =========== Diagnostics tools for showing details of Prism2/2.5/3 configuration. hostap_io_debug =============== Debugging tool for generating human readable debug log from Host AP driver io_debug file. hostap_rid ========== Debugging tool for reading and writing Prism2/2.5/3 RID values. prism2_param ============ prism2_param is a shell script wrapper for 'iwpriv wlan0 prism2_param <param> <val>' command. The wrapper translates parameter names from text format into a integer value used in the real iwpriv command. prism2_srec =========== Firmware image downloaded for Host AP driver split_combined_hex ================== Tool for splitting combined S3 image files into seprate hex files. This can be used to convert combined firmware image files, e.g., extracted from some Windows drivers, into separate image files that can then be downloaded using prism2_srec. --- NEW FILE: hostapd.help --- CONFIG_HOSTAPD hostapd - user space IEEE 802.11 AP and IEEE 802.1X Authenticator for Host AP driver for Intersil Prism2/2.5/3 ================================================================= hostapd is an optional user space component for Host AP driver. It adds more features to the basic IEEE 802.11 management included in the kernel driver: using external RADIUS authentication server for MAC address based access control, IEEE 802.1X Authenticator and dynamic WEP keying, RADIUS accounting. --- hostap.help DELETED --- |
From: <smi...@us...> - 2004-01-08 01:47:42
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv14056/scripts/configuration Added Files: hostap-driver.config hostap-utils.config hostapd.config Removed Files: hostap.config Log Message: checked in scripts from manu --- NEW FILE: hostap-driver.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/hostap-driver.config,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org menu_add "System|Hardware Support" bool "HostAP Driver (master mode and 802.1x for prism2 WLAN devices)" CONFIG_HOSTAP_DRIVER --- NEW FILE: hostap-utils.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/hostap-utils.config,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org if [ "$CONFIG_HOSTAP_DRIVER" = "y" ]; then menu_add "System|Hardware Support" bool "HostAP Utilities " CONFIG_HOSTAP_UTILS fi --- NEW FILE: hostapd.config --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/configuration/hostapd.config,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org if [ "$CONFIG_HOSTAP_DRIVER" = "y" ]; then menu_add "System|Hardware Support" bool "HostAP User-space Daemon for 802.1x authentication" CONFIG_HOSTAPD fi --- hostap.config DELETED --- |
From: <smi...@us...> - 2004-01-08 01:47:42
|
Update of /cvsroot/devil-linux/build In directory sc8-pr-cvs1:/tmp/cvs-serv14056 Modified Files: CHANGES Log Message: checked in scripts from manu Index: CHANGES =================================================================== RCS file: /cvsroot/devil-linux/build/CHANGES,v retrieving revision 1.638 retrieving revision 1.639 diff -u -d -r1.638 -r1.639 --- CHANGES 8 Jan 2004 01:09:48 -0000 1.638 +++ CHANGES 8 Jan 2004 01:47:38 -0000 1.639 @@ -22,6 +22,8 @@ # 1.1.2 +- updated hostap to v0.1.2 (Heiko / Emmanuel Escarabajal) +- added mtr v0.54 (Heiko / Emmanuel Escarabajal) - init system now first searches all devices for configuration and then for empty medias (Heiko + Tim Tait) - added rsync v2.6.0 |
From: <smi...@us...> - 2004-01-08 01:47:41
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv14056/scripts Added Files: hostap-driver hostap-utils hostapd Removed Files: hostap Log Message: checked in scripts from manu --- NEW FILE: hostap-driver --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/hostap-driver,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: hostap-driver # Required-Start: $basebuildtools $libs pcmcia-cs # 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 KERNELDIR=$(find_src_dir linux) PCMCIADIR=$(find_src_dir pcmcia-cs) HOSTAPDRIVERDIR=$(find_src_dir hostapi-driver) MYNAME="HOSTAP_DRIVER" MY_BINDIR=$CDDIR/usr/sbin MY_DOCDIR=$DOCDIR/hostap case $1 in build ) if [ "$CONFIG_HOSTAP_DRIVER" = "y" ]; then if [ "$CONFIG_PCMCIA_CS" = "y" ]; then make pci plx pccard EXTRA_CFLAG="-DPRISM2_HOSTAPD -DCONFIG_HOSTAP_FIRMWARE" \ -e KERNEL_PATH=$KERNELDIR PCMCIA_PATH=$PCMCIADIR || exit 1 else make pci plx pccard EXTRA_CFLAG="-DPRISM2_HOSTAPD -DCONFIG_HOSTAP_FIRMWARE" \ -e KERNEL_PATH=$KERNELDIR || exit 1 fi strip_debug fi ;; install ) if [ "$CONFIG_HOSTAP" = "y" ]; then mkdir -p $MY_BINDIR mkdir -p $MY_DOCDIR make install_pci -e MODPATH=$CDDIR/lib/modules/$KERNELVERSION \ KERNEL_PATH=$KERNELDIR || exit 1 make install_plx -e MODPATH=$CDDIR/lib/modules/$KERNELVERSION \ KERNEL_PATH=$KERNELDIR || exit 1 mkdir -p $ETCDIR/etc/pcmcia || exit 1 make install_pccard -e MODPATH=$CDDIR/lib/modules/$KERNELVERSION DESTDIR=$ETCDIR \ KERNEL_PATH=$KERNELDIR || exit 1 cp -dp README $MY_DOCDIR/README.driver || exit1 cp -dp ChangeLog $MY_DOCDIR/ChangeLog.driver || exit1 cp -dp COPYING $MY_DOCDIR/COPYING || exit1 echo "HELP_$MYNAME=\"$MYNAME is an Access Point driver for the Intersil Prism2/2.5 chipset\"" >> $SOFTWAREHELP fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: hostap-utils --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/hostap-utils,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: hostap-utils # Required-Start: $basebuildtools $libs hostap-driver # 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 HOSTAPUTILSDIR=$(find_src_dir hostap-utils) MYNAME="HOSTAP_UTILS" MY_BINDIR=$CDDIR/usr/sbin MY_DOCDIR=$DOCDIR/hostap case $1 in build ) if [ "$CONFIG_HOSTAP_UTILS" = "y" ]; then make || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_HOSTAP_UTILS" = "y" ]; then mkdir -p $MY_BINDIR || exit1 mkdir -p $MY_DOCDIR || exit1 cp -dp hostap_crypt_conf $MY_BINDIR || exit1 cp -dp hostap_diag $MY_BINDIR || exit1 cp -dp hostap_io_debug $MY_BINDIR || exit1 cp -dp hostap_rid $MY_BINDIR || exit1 cp -dp prism2_param $MY_BINDIR || exit1 cp -dp prism2_srec $MY_BINDIR || exit1 cp -dp split_combined_hex $MY_BINDIR || exit1 cp README $MY_DOCDIR/README.utils || exit1 cp ChangeLog $MY_DOCDIR/ChangeLog.utils || exit1 echo "HELP_$MYNAME=\"$MYNAME are utilities for hostap driver\"" >> $SOFTWAREHELP fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- NEW FILE: hostapd --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/hostapd,v $ # $Revision: 1.1 $ # $Date: 2004/01/08 01:47:38 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: hostapd # Required-Start: $basebuildtools $libs hostap-driver # 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 HOSTAPDDIR=$(find_src_dir hostapd) MYNAME="HOSTAPD" MY_BINDIR=$CDDIR/usr/sbin MY_DOCDIR=$DOCDIR/hostap case $1 in build ) if [ "$CONFIG_HOSTAPD" = "y" ]; then make || exit 1 strip_debug fi ;; install ) if [ "$CONFIG_HOSTAPD" = "y" ]; then mkdir -p $MY_BINDIR || exit1 mkdir -p $MY_DOCDIR || exit1 cp -dp hostapd $MY_BINDIR ||exit1 cp -dp $MYDIR/scripts/hostapd $ETCDIR/etc/init.d || exit 1 cp -dp hostapd.conf $ETCDIR/etc || exit1 cp -dp hostapd.accept $ETCDIR/etc || exit1 cp -dp hostapd.deny $ETCDIR/etc || exit1 chmod 600 $ETCDIR/etc/hostapd.conf || exit1 chmod 600 $ETCDIR/etc/hostapd.accept || exit1 chmod 600 $ETCDIR/etc/hostapd.deny || exit1 cp -dp README $MY_DOCDIR/README.daemon || exit1 echo "# Start hostapd?" >> $CONFIGFILE echo "START_$MYNAME=no" >> $CONFIGFILE echo >> $CONFIGFILE echo "HELP_$MYNAME=\"$MYNAME is a user-space daemon for 802.1x authentication\"" >> $SOFTWAREHELP fi ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac --- hostap DELETED --- |