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