We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e7b3f6 commit eedbc5dCopy full SHA for eedbc5d
1 file changed
build/scripts/build.sh
@@ -139,7 +139,22 @@ fi
139
140
if [[ "$task" == "kernel" ]]; then
141
if [[ -z "$DEFCONFIG" ]]; then
142
- DEFCONFIG="${subarch}_defconfig"
+ case "$subarch" in
143
+ alpha) ;&
144
+ arm64) ;&
145
+ riscv) ;&
146
+ s390) DEFCONFIG=defconfig ;;
147
+ arc) DEFCONFIG=axs103_smp_defconfig ;;
148
+ arm) DEFCONFIG=versatile_defconfig ;;
149
+ i686) DEFCONFIG=i386_defconfig ;;
150
+ m68k) DEFCONFIG=multi_defconfig ;;
151
+ mips) DEFCONFIG=32r6_defconfig ;;
152
+ mips64) DEFCONFIG=64r6_defconfig ;;
153
+ parisc) DEFCONFIG=generic-32bit_defconfig ;;
154
+ sh) DEFCONFIG=shx3_defconfig ;;
155
+ sparc) DEFCONFIG=sparc64_defconfig ;;
156
+ *) DEFCONFIG="${subarch}_defconfig" ;;
157
+ esac
158
fi
159
cmd+="-e DEFCONFIG=$DEFCONFIG "
160
0 commit comments