mirror of
https://github.com/gnuton/asuswrt-merlin.ng.git
synced 2025-05-19 07:51:46 +02:00
12 lines
209 B
Bash
Executable file
12 lines
209 B
Bash
Executable file
#!/bin/bash
|
|
|
|
profile=$1
|
|
cfile=$KERNEL_DIR/arch/$ARCH/defconfig
|
|
|
|
cat $HOSTTOOLS_DIR/scripts/defconfig-bcm.template > $cfile
|
|
|
|
for i in $HOSTTOOLS_DIR/scripts/gendefconfig.d/*.conf
|
|
do
|
|
$i $profile $cfile
|
|
done
|
|
|