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