| 1 | source "tmp/.config-target.in" |
| 2 | |
| 3 | # Kernel/Hardware features |
| 4 | |
| 5 | config LINUX_2_4 |
| 6 | bool |
| 7 | |
| 8 | config LINUX_2_6 |
| 9 | bool |
| 10 | |
| 11 | config HAS_FPU |
| 12 | bool |
| 13 | |
| 14 | config AUDIO_SUPPORT |
| 15 | bool |
| 16 | |
| 17 | config GPIO_SUPPORT |
| 18 | bool |
| 19 | |
| 20 | config PCI_SUPPORT |
| 21 | select AUDIO_SUPPORT |
| 22 | bool |
| 23 | |
| 24 | config PCIE_SUPPORT |
| 25 | bool |
| 26 | |
| 27 | config PCMCIA_SUPPORT |
| 28 | bool |
| 29 | |
| 30 | config USB_SUPPORT |
| 31 | select AUDIO_SUPPORT |
| 32 | bool |
| 33 | |
| 34 | config BIG_ENDIAN |
| 35 | bool |
| 36 | |
| 37 | config USES_INITRAMFS |
| 38 | bool |
| 39 | |
| 40 | config USES_SQUASHFS |
| 41 | bool |
| 42 | |
| 43 | config USES_JFFS2 |
| 44 | bool |
| 45 | |
| 46 | config USES_EXT2 |
| 47 | bool |
| 48 | |
| 49 | config USES_TARGZ |
| 50 | bool |
| 51 | |
| 52 | config USES_CPIOGZ |
| 53 | bool |
| 54 | |
| 55 | config USES_UBIFS |
| 56 | bool |
| 57 | |
| 58 | config PROFILE_KCONFIG |
| 59 | bool |
| 60 | |
| 61 | config NOMMU |
| 62 | bool |
| 63 | |
| 64 | # Architecture selection |
| 65 | |
| 66 | config arm |
| 67 | bool |
| 68 | |
| 69 | config armeb |
| 70 | select BIG_ENDIAN |
| 71 | bool |
| 72 | |
| 73 | config avr32 |
| 74 | select BIG_ENDIAN |
| 75 | bool |
| 76 | |
| 77 | config cris |
| 78 | bool |
| 79 | |
| 80 | config i386 |
| 81 | bool |
| 82 | |
| 83 | config i686 |
| 84 | bool |
| 85 | |
| 86 | config m68k |
| 87 | bool |
| 88 | |
| 89 | config mips |
| 90 | select BIG_ENDIAN |
| 91 | bool |
| 92 | |
| 93 | config mipsel |
| 94 | bool |
| 95 | |
| 96 | config mips64 |
| 97 | select BIG_ENDIAN |
| 98 | bool |
| 99 | |
| 100 | config mips64el |
| 101 | bool |
| 102 | |
| 103 | config powerpc |
| 104 | select BIG_ENDIAN |
| 105 | bool |
| 106 | |
| 107 | config powerpc64 |
| 108 | select BIG_ENDIAN |
| 109 | bool |
| 110 | |
| 111 | config sh3 |
| 112 | bool |
| 113 | |
| 114 | config sh3eb |
| 115 | select BIG_ENDIAN |
| 116 | bool |
| 117 | |
| 118 | config sh4 |
| 119 | bool |
| 120 | |
| 121 | config sh4eb |
| 122 | select BIG_ENDIAN |
| 123 | bool |
| 124 | |
| 125 | config sparc |
| 126 | select BIG_ENDIAN |
| 127 | bool |
| 128 | |
| 129 | config ubicom32 |
| 130 | select BIG_ENDIAN |
| 131 | bool |
| 132 | |
| 133 | config x86_64 |
| 134 | bool |
| 135 | |
| 136 | config ARCH |
| 137 | string |
| 138 | default "arm" if arm |
| 139 | default "armeb" if armeb |
| 140 | default "avr32" if avr32 |
| 141 | default "cris" if cris |
| 142 | default "i386" if i386 |
| 143 | default "i686" if i686 |
| 144 | default "m68k" if m68k |
| 145 | default "mips" if mips |
| 146 | default "mipsel" if mipsel |
| 147 | default "mips64" if mips64 |
| 148 | default "mips64el" if mips64el |
| 149 | default "powerpc" if powerpc |
| 150 | default "sh3" if sh3 |
| 151 | default "sh3eb" if sh3eb |
| 152 | default "sh4" if sh4 |
| 153 | default "sh4eb" if sh4eb |
| 154 | default "sparc" if sparc |
| 155 | default "ubicom32" if ubicom32 |
| 156 | default "x86_64" if x86_64 |
| 157 | |
| 158 | |