| 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/licence for details.
|
|---|
| 6 |
|
|---|
| 7 | mainmenu "FreeWRT Configuration"
|
|---|
| 8 |
|
|---|
| 9 | config MODULES
|
|---|
| 10 | bool
|
|---|
| 11 | default y
|
|---|
| 12 |
|
|---|
| 13 | # this line is magic; do not remove it
|
|---|
| 14 | # certain make rules depend on its existence
|
|---|
| 15 | # and the name FWRT_HAVE_DOT_CONFIG is hard-coded
|
|---|
| 16 | config FWRT_HAVE_DOT_CONFIG
|
|---|
| 17 | bool
|
|---|
| 18 | default y
|
|---|
| 19 |
|
|---|
| 20 | config FWRT_BIG_ENDIAN
|
|---|
| 21 | tristate
|
|---|
| 22 |
|
|---|
| 23 | # Supported architectures
|
|---|
| 24 |
|
|---|
| 25 | config FWRT_i386
|
|---|
| 26 | tristate
|
|---|
| 27 |
|
|---|
| 28 | config FWRT_mips
|
|---|
| 29 | tristate
|
|---|
| 30 | select FWRT_BIG_ENDIAN
|
|---|
| 31 |
|
|---|
| 32 | config FWRT_mipsel
|
|---|
| 33 | tristate
|
|---|
| 34 |
|
|---|
| 35 | config FWRT_armeb
|
|---|
| 36 | tristate
|
|---|
| 37 | select FWRT_BIG_ENDIAN
|
|---|
| 38 |
|
|---|
| 39 | config FWRT_mips64
|
|---|
| 40 | tristate
|
|---|
| 41 | select FWRT_BIG_ENDIAN
|
|---|
| 42 |
|
|---|
| 43 | config FWRT_arm
|
|---|
| 44 | tristate
|
|---|
| 45 |
|
|---|
| 46 | config FWRT_cris
|
|---|
| 47 | tristate
|
|---|
| 48 |
|
|---|
| 49 | config FWRT_m68k
|
|---|
| 50 | tristate
|
|---|
| 51 | select FWRT_BIG_ENDIAN
|
|---|
| 52 |
|
|---|
| 53 | config FWRT_powerpc
|
|---|
| 54 | tristate
|
|---|
| 55 | select FWRT_BIG_ENDIAN
|
|---|
| 56 |
|
|---|
| 57 | config FWRT_sh3
|
|---|
| 58 | tristate
|
|---|
| 59 |
|
|---|
| 60 | config FWRT_sh3eb
|
|---|
| 61 | tristate
|
|---|
| 62 | select FWRT_BIG_ENDIAN
|
|---|
| 63 |
|
|---|
| 64 | config FWRT_sh4
|
|---|
| 65 | tristate
|
|---|
| 66 |
|
|---|
| 67 | config FWRT_sh4eb
|
|---|
| 68 | tristate
|
|---|
| 69 | select FWRT_BIG_ENDIAN
|
|---|
| 70 |
|
|---|
| 71 | config FWRT_sparc
|
|---|
| 72 | tristate
|
|---|
| 73 | select FWRT_BIG_ENDIAN
|
|---|
| 74 |
|
|---|
| 75 | config FWRT_ARCH
|
|---|
| 76 | string
|
|---|
| 77 | default "arm" if FWRT_arm
|
|---|
| 78 | default "armeb" if FWRT_armeb
|
|---|
| 79 | default "cris" if FWRT_cris
|
|---|
| 80 | default "i386" if FWRT_i386
|
|---|
| 81 | default "m68k" if FWRT_m68k
|
|---|
| 82 | default "mips" if FWRT_mips
|
|---|
| 83 | default "mipsel" if FWRT_mipsel
|
|---|
| 84 | default "mips64" if FWRT_mips64
|
|---|
| 85 | default "powerpc" if FWRT_powerpc
|
|---|
| 86 | default "sh3" if FWRT_sh3
|
|---|
| 87 | default "sh3eb" if FWRT_sh3eb
|
|---|
| 88 | default "sh4" if FWRT_sh4
|
|---|
| 89 | default "sh4eb" if FWRT_sh4eb
|
|---|
| 90 | default "sparc" if FWRT_sparc
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 | config FWRT_WGET
|
|---|
| 94 | string
|
|---|
| 95 | default "wget --passive-ftp -nd"
|
|---|
| 96 |
|
|---|
| 97 | config FWRT_JLEVEL
|
|---|
| 98 | int
|
|---|
| 99 | default "1"
|
|---|
| 100 |
|
|---|
| 101 | config FWRT_LINUX_2_4_BRCM
|
|---|
| 102 | bool
|
|---|
| 103 | config FWRT_LINUX_2_6_BRCM
|
|---|
| 104 | bool
|
|---|
| 105 | config FWRT_LINUX_2_4_RB
|
|---|
| 106 | bool
|
|---|
| 107 | config FWRT_LINUX_2_6_RB
|
|---|
| 108 | bool
|
|---|
| 109 | config FWRT_LINUX_2_4_X86
|
|---|
| 110 | bool
|
|---|
| 111 | config FWRT_LINUX_2_6_X86
|
|---|
| 112 | bool
|
|---|
| 113 | config FWRT_LINUX_2_4_X86
|
|---|
| 114 | bool
|
|---|
| 115 |
|
|---|
| 116 | source "target/Config.in"
|
|---|
| 117 | source "target/linux/Config.in"
|
|---|
| 118 | source "package/Config.in"
|
|---|