freewrt_1_0
freewrt_2_0
|
Last change
on this file since fdd4f59 was c04ece1, checked in by Thorsten Glaser <tg@…>, 19 years ago |
|
as discussed with wbx@ some 2-3 weeks ago, change
the BR2_ prefix to FWRT_
tested with a standard build (only the squashfs
image since the jffs2 didn't get built)
git-svn-id: svn://www.freewrt.org/trunk/freewrt@360 afb5a338-a214-0410-bd46-81f09a774fd1
|
-
Property mode
set to
100644
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | mainmenu "FreeWRT Configuration"
|
|---|
| 2 |
|
|---|
| 3 | config MODULES
|
|---|
| 4 | bool
|
|---|
| 5 | default y
|
|---|
| 6 |
|
|---|
| 7 | config FWRT_HAVE_DOT_CONFIG
|
|---|
| 8 | bool
|
|---|
| 9 | default y
|
|---|
| 10 |
|
|---|
| 11 | config FWRT_BIG_ENDIAN
|
|---|
| 12 | tristate
|
|---|
| 13 |
|
|---|
| 14 | # Supported architectures
|
|---|
| 15 |
|
|---|
| 16 | config FWRT_i386
|
|---|
| 17 | tristate
|
|---|
| 18 |
|
|---|
| 19 | config FWRT_mips
|
|---|
| 20 | tristate
|
|---|
| 21 | select FWRT_BIG_ENDIAN
|
|---|
| 22 |
|
|---|
| 23 | config FWRT_mipsel
|
|---|
| 24 | tristate
|
|---|
| 25 |
|
|---|
| 26 | config FWRT_armeb
|
|---|
| 27 | tristate
|
|---|
| 28 | select FWRT_BIG_ENDIAN
|
|---|
| 29 |
|
|---|
| 30 | # Unsupported architectures
|
|---|
| 31 |
|
|---|
| 32 | if CONFIG_DEVEL
|
|---|
| 33 | config FWRT_mips64
|
|---|
| 34 | tristate
|
|---|
| 35 | select FWRT_BIG_ENDIAN
|
|---|
| 36 |
|
|---|
| 37 | config FWRT_arm
|
|---|
| 38 | tristate
|
|---|
| 39 |
|
|---|
| 40 | config FWRT_cris
|
|---|
| 41 | tristate
|
|---|
| 42 |
|
|---|
| 43 | config FWRT_m68k
|
|---|
| 44 | tristate
|
|---|
| 45 | select FWRT_BIG_ENDIAN
|
|---|
| 46 |
|
|---|
| 47 | config FWRT_powerpc
|
|---|
| 48 | tristate
|
|---|
| 49 | select FWRT_BIG_ENDIAN
|
|---|
| 50 |
|
|---|
| 51 | config FWRT_sh3
|
|---|
| 52 | tristate
|
|---|
| 53 |
|
|---|
| 54 | config FWRT_sh3eb
|
|---|
| 55 | tristate
|
|---|
| 56 | select FWRT_BIG_ENDIAN
|
|---|
| 57 |
|
|---|
| 58 | config FWRT_sh4
|
|---|
| 59 | tristate
|
|---|
| 60 |
|
|---|
| 61 | config FWRT_sh4eb
|
|---|
| 62 | tristate
|
|---|
| 63 | select FWRT_BIG_ENDIAN
|
|---|
| 64 |
|
|---|
| 65 | config FWRT_sparc
|
|---|
| 66 | tristate
|
|---|
| 67 | select FWRT_BIG_ENDIAN
|
|---|
| 68 |
|
|---|
| 69 | endif
|
|---|
| 70 |
|
|---|
| 71 | config FWRT_ARCH
|
|---|
| 72 | string
|
|---|
| 73 | default "arm" if FWRT_arm
|
|---|
| 74 | default "armeb" if FWRT_armeb
|
|---|
| 75 | default "cris" if FWRT_cris
|
|---|
| 76 | default "i386" if FWRT_i386
|
|---|
| 77 | default "m68k" if FWRT_m68k
|
|---|
| 78 | default "mips" if FWRT_mips
|
|---|
| 79 | default "mipsel" if FWRT_mipsel || !CONFIG_DEVEL
|
|---|
| 80 | default "mips64" if FWRT_mips64
|
|---|
| 81 | default "powerpc" if FWRT_powerpc
|
|---|
| 82 | default "sh3" if FWRT_sh3
|
|---|
| 83 | default "sh3eb" if FWRT_sh3eb
|
|---|
| 84 | default "sh4" if FWRT_sh4
|
|---|
| 85 | default "sh4eb" if FWRT_sh4eb
|
|---|
| 86 | default "sparc" if FWRT_sparc
|
|---|
| 87 |
|
|---|
| 88 |
|
|---|
| 89 | config FWRT_WGET
|
|---|
| 90 | string
|
|---|
| 91 | default "wget --passive-ftp -nd"
|
|---|
| 92 |
|
|---|
| 93 | config FWRT_JLEVEL
|
|---|
| 94 | int
|
|---|
| 95 | default "1"
|
|---|
| 96 |
|
|---|
| 97 | config FWRT_LINUX_2_4_BRCM
|
|---|
| 98 | bool
|
|---|
| 99 |
|
|---|
| 100 | source "target/Config.in"
|
|---|
| 101 | source "target/linux/Config.in"
|
|---|
| 102 | source "package/Config.in"
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.