Changeset e3110e9 in freewrt for target


Ignore:
Timestamp:
Jun 26, 2007, 3:28:14 PM (18 years ago)
Author:
Thorsten Glaser <tg@…>
Children:
f78c412
Parents:
578ce45a
Message:

make this a little clearer, asked by wbx@

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • target/Config.in

    r578ce45a re3110e9  
    77menu "Target system"
    88
     9choice
     10prompt "Target board category"
     11depends on !FWRT_LINUX_SNAPSHOT_META_TARGET
     12
     13config FWRT_TARGET_CATEGORY_MIPS
     14        bool "MIPS-based routers (brcm, rb)"
     15        help
     16          Select here to choose one of the classic embedded router
     17          devices (ASUS WL500g, Netgear, Linksys) or the Mikrotik
     18          routerboard.
     19
     20config FWRT_TARGET_CATEGORY_I386
     21        bool "I386-based systems (Soekris, WRAP)"
     22        depends on FWRT_DEVEL
     23        help
     24          Select here to choose one of the various i386 experimental
     25          targets
     26
     27config FWRT_TARGET_CATEGORY_NOKERNEL
     28        bool "virtual targets for various CPUs"
     29        depends on FWRT_DEVEL
     30        help
     31          Select here to choose a target without a Linux kernel built
     32          for various machine architectures (platforms). Packages
     33          build here run on all other targets with the same architecture.
     34
     35endchoice
     36
    937choice
    1038prompt "Embedded Device"
    11 depends on ! FWRT_LINUX_SNAPSHOT_META_TARGET
     39depends on FWRT_TARGET_CATEGORY_MIPS
    1240source "target/linux/brcm-2.4/Config.in"
    1341source "target/linux/brcm-2.6/Config.in"
    1442source "target/linux/rb-2.4/Config.in"
    1543source "target/linux/rb-2.6/Config.in"
     44endchoice
     45
     46choice
     47prompt "Embedded Device"
     48depends on FWRT_TARGET_CATEGORY_I386
    1649source "target/linux/x86-2.4/Config.in"
    1750source "target/linux/x86-2.6/Config.in"
     51endchoice
     52
     53choice
     54prompt "Embedded Device"
     55depends on FWRT_TARGET_CATEGORY_NOKERNEL
    1856source "target/linux/nokernel/Config.in"
    1957endchoice
Note: See TracChangeset for help on using the changeset viewer.