Changeset 350

Show
Ignore:
Timestamp:
07/22/06 10:03:49 (6 years ago)
Author:
wbx
Message:

make firmware types as choice, we will have later special kernel configurations and startupscripts for each type

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/target/Config.in

    r347 r350  
    11menu "Target System" 
    22 
    3 menu "Broadcom BCM5xx
     3menu "Broadcom devices
    44choice 
    55prompt "Embedded System" 
  • trunk/freewrt/target/linux/Config.in

    r184 r350  
    1 menu "Target Root Filesystem
    2  
    3         config BR2_TARGET_ROOTFS_SQUASHFS_LZMA 
    4                bool "Production images with read-only root filesystem
    5                 default y 
    6                 help 
    7                  Build firmware images with a 
    8                  read-only and highly compressed (squashfs with lzma  
    9                  compression) root filesystem 
    10  
    11         config BR2_TARGET_ROOTFS_JFFS2 
    12                 bool "Development images with writable root filesystem" 
    13                default y 
    14                help 
    15                  Build firmware images with a  
    16                   writable jffs2 root filesystem. 
    17  
    18         config BR2_TARGET_ROOTFS_TGZ 
    19                bool "Target root filesystem for Compact flash, NFS, external USB disk" 
    20                default y 
    21                 help 
    22                   Build a compressed tar archive of the the root filesystem. 
    23  
    24 endmenu 
    25  
    26 menu "Kernel Configuration / Device Support
     1menu "Target Firmware type
     2 
     3choice 
     4prompt "Target Firmware type
     5 
     6config BR2_TARGET_ROOTFS_SQUASHFS_LZMA 
     7        bool "Production images with read-only root filesystem" 
     8        help 
     9          Build firmware images with a read-only and highly compressed (squashfs with lzma  
     10          compression) root filesystem 
     11 
     12config BR2_TARGET_ROOTFS_JFFS2 
     13        bool "Development images with writable root filesystem" 
     14        help 
     15          Build firmware images with a writable jffs2 root filesystem. 
     16 
     17config BR2_TARGET_ROOTFS_TGZ 
     18        bool "Target root filesystem for Compact flash" 
     19        help 
     20          Build a compressed tar archive of the the root filesystem without bootloader. 
     21 
     22endchoice 
     23 
     24endmenu 
     25 
     26menu "Kernel Configuration
    2727 
    2828comment "Device specific configuration" 
     
    319319 
    320320endmenu 
    321  
    322 config BR2_PACKAGE_KMOD_CRYPTO 
    323         prompt "CryptoAPI modules" 
    324         tristate 
    325         default m 
    326         select BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE 
    327         help 
    328           Kernel modules for cryptographic algorithms 
    329321 
    330322menu "Filesystems support" 
     
    766758menu "Additional kernel modules" 
    767759 
     760config BR2_PACKAGE_KMOD_CRYPTO 
     761        prompt "CryptoAPI modules" 
     762        tristate 
     763        default m 
     764        select BUSYBOX_CONFIG_FEATURE_CHECK_TAINTED_MODULE 
     765        help 
     766          Kernel modules for cryptographic algorithms 
     767 
    768768source "target/linux/package/Config.in" 
    769769