From: <smi...@us...> - 2003-12-24 23:14:40
|
Update of /cvsroot/devil-linux/build/scripts/configuration In directory sc8-pr-cvs1:/tmp/cvs-serv8517/scripts/configuration Modified Files: devildoc.config gcc.config grsecurity.config linux.config prepare.config Log Message: - added -pie support to gcc (not used yet) - update binutils to v2.14.90.0.7 - updated stack smashing protector to v3.3-7 - reorganized menuconfig a bit Index: devildoc.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/devildoc.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- devildoc.config 2 Oct 2003 15:58:26 -0000 1.2 +++ devildoc.config 24 Dec 2003 23:14:37 -0000 1.3 @@ -5,5 +5,5 @@ # # http://www.devil-linux.org -menu_add "Build Configuration" bool "Devil-Linux Documentation on CD" CONFIG_DEVIL_DOC_ISO -menu_add "Build Configuration" bool "Man pages and program documentation on CD" CONFIG_DEVIL_MAN_ISO +menu_add "Build Configuration|Documentation and man-pages" bool "Devil-Linux Documentation on CD" CONFIG_DEVIL_DOC_ISO +menu_add "Build Configuration|Documentation and man-pages" bool "Man pages and program documentation on CD" CONFIG_DEVIL_MAN_ISO Index: gcc.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/gcc.config,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gcc.config 2 Oct 2003 15:58:26 -0000 1.3 +++ gcc.config 24 Dec 2003 23:14:37 -0000 1.4 @@ -5,4 +5,5 @@ # http://www.devil-linux.org menu_add "System|Programming" bool "GCC3" CONFIG_GCC3 -menu_add "Build Configuration" bool "GCC Stack Smashing Protector" CONFIG_GCC_STACK_PROTECTOR +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 Index: grsecurity.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/grsecurity.config,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- grsecurity.config 2 Oct 2003 15:58:26 -0000 1.2 +++ grsecurity.config 24 Dec 2003 23:14:37 -0000 1.3 @@ -5,4 +5,4 @@ # # http://www.devil-linux.org -[ "$CONFIG_XFS" = "y" ] || menu_add "Build Configuration" bool "GRSecurity Patch (enhances system security and will break XFS)" CONFIG_GRSECURITY +[ "$CONFIG_XFS" = "y" ] || menu_add "Build Configuration|Security" bool "GRSecurity Patch (enhances system security and will break XFS)" CONFIG_GRSECURITY Index: linux.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/linux.config,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- linux.config 17 Dec 2003 14:55:47 -0000 1.8 +++ linux.config 24 Dec 2003 23:14:37 -0000 1.9 @@ -6,6 +6,6 @@ # http://www.devil-linux.org test -z "$CONFIG_LINUX_NR_CPUS" && CONFIG_LINUX_NR_CPUS=4 -menu_add "Build Configuration" bool "Symmetric multi-processing support" CONFIG_LINUX_SMP -menu_add "Build Configuration" list "Maximum number of CPUs" CONFIG_LINUX_NR_CPUS 2 4 8 16 32 +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 Index: prepare.config =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/configuration/prepare.config,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- prepare.config 20 Dec 2003 03:36:42 -0000 1.6 +++ prepare.config 24 Dec 2003 23:14:37 -0000 1.7 @@ -9,9 +9,9 @@ test -z "$CONFIG_CPU" && CONFIG_CPU=486 menu_add "Build Configuration" bool "Compressed ISO (ZISOFS)" CONFIG_ZISOFS -menu_add "Build Configuration" list "Kernel CPU" CONFIG_KERNEL_CPU 486 586 686 VIAC3_2 -menu_add "Build Configuration" list "GCC CPU" CONFIG_CPU 486 586 686 -menu_add "Build Configuration" bool "Highmem Support" CONFIG_HIGHMEM +menu_add "Build Configuration|Processor and Memory" list "Kernel CPU" CONFIG_KERNEL_CPU 486 586 686 VIAC3_2 +menu_add "Build Configuration|Processor and Memory" list "GCC CPU" CONFIG_CPU 486 586 686 +menu_add "Build Configuration|Processor and Memory" bool "Highmem Support" CONFIG_HIGHMEM test -z "$CONFIG_PMAKE" && CONFIG_PMAKE=1 menu_add "Build Configuration" list "Parallel Build Jobs" CONFIG_PMAKE 1 2 3 4 5 6 7 8 9 10 |