Changeset 849fe8b in freewrt


Ignore:
Timestamp:
Jul 22, 2006, 10:03:49 AM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Branches:
freewrt_1_0, freewrt_2_0
Children:
8b095c4
Parents:
9a32a99
Message:

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

git-svn-id: svn://www.freewrt.org/trunk/freewrt@350 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
target
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • target/Config.in

    r9a32a99 r849fe8b  
    11menu "Target System"
    22
    3 menu "Broadcom BCM5xx"
     3menu "Broadcom devices"
    44choice
    55prompt "Embedded System"
  • target/linux/Config.in

    r9a32a99 r849fe8b  
    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
Note: See TracChangeset for help on using the changeset viewer.