| 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
|
|---|
| 102 | bool
|
|---|
| 103 | config FWRT_LINUX_2_6
|
|---|
| 104 | bool
|
|---|
| 105 | config FWRT_LINUX_2_4_BRCM
|
|---|
| 106 | bool
|
|---|
| 107 | config FWRT_LINUX_2_6_BRCM
|
|---|
| 108 | bool
|
|---|
| 109 | config FWRT_LINUX_2_4_RB
|
|---|
| 110 | bool
|
|---|
| 111 | config FWRT_LINUX_2_6_RB
|
|---|
| 112 | bool
|
|---|
| 113 | config FWRT_LINUX_2_4_X86
|
|---|
| 114 | bool
|
|---|
| 115 | config FWRT_LINUX_2_6_X86
|
|---|
| 116 | bool
|
|---|
| 117 | config FWRT_LINUX_2_4_X86
|
|---|
| 118 | bool
|
|---|
| 119 |
|
|---|
| 120 | menu "ADK configuration"
|
|---|
| 121 |
|
|---|
| 122 | config FWRT_DEVEL
|
|---|
| 123 | bool "Enable development platforms"
|
|---|
| 124 | default n
|
|---|
| 125 | help
|
|---|
| 126 | Enable platforms and boards which are in development.
|
|---|
| 127 | They mostly do not work. So if you like to try, follow the
|
|---|
| 128 | development and try to help.
|
|---|
| 129 |
|
|---|
| 130 | config FWRT_PREFIX
|
|---|
| 131 | string "Set a prefix for firmware image file"
|
|---|
| 132 | default "freewrt"
|
|---|
| 133 | help
|
|---|
| 134 | if you have a custom buildroot to build your own application,
|
|---|
| 135 | you can set your own prefix for the firmware image file.
|
|---|
| 136 |
|
|---|
| 137 | config FWRT_USE_CCACHE
|
|---|
| 138 | bool "Use ccache to speed up package re-compilation"
|
|---|
| 139 | default n
|
|---|
| 140 | help
|
|---|
| 141 | ccache is a compiler cache. It speeds up re-compilation of C/C++ code
|
|---|
| 142 | by caching previous compiles and detecting when the same compile is
|
|---|
| 143 | being done again.
|
|---|
| 144 | Requires ccache on your build machine.
|
|---|
| 145 | The default ccache options (cache dir, size etc) are used.
|
|---|
| 146 | Note: To build the toolchain with ccache, you'll have to set it up
|
|---|
| 147 | for yourself (e.g. with the CC environment variable or symlinks).
|
|---|
| 148 | This option is only to prefix the _cross_compile calls with ccache.
|
|---|
| 149 |
|
|---|
| 150 | config FWRT_GUI_SDK
|
|---|
| 151 | bool "Build hosttools for C++ GUI framework"
|
|---|
| 152 | default n
|
|---|
| 153 | help
|
|---|
| 154 | This will build cxxtools and tntnet for your host machine.
|
|---|
| 155 | You start with a GUI project, if you have this tools installed.
|
|---|
| 156 |
|
|---|
| 157 | endmenu
|
|---|
| 158 |
|
|---|
| 159 | source "target/Config.in"
|
|---|
| 160 | source "package/Config.in"
|
|---|