Author: nbd Date: 2015-11-12 02:06:10 +0100 (Thu, 12 Nov 2015) New Revision: 47461
Modified: trunk/scripts/diffconfig.sh Log: scripts/diffconfig.sh: reduce config output with CONFIG_ALL_KMODS Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/scripts/diffconfig.sh =================================================================== --- trunk/scripts/diffconfig.sh 2015-11-12 00:24:27 UTC (rev 47460) +++ trunk/scripts/diffconfig.sh 2015-11-12 01:06:10 UTC (rev 47461) @@ -1,6 +1,7 @@ #!/bin/sh grep \^CONFIG_TARGET_ .config | head -n3 > tmp/.diffconfig.head grep '^CONFIG_ALL=y' .config >> tmp/.diffconfig.head +grep '^CONFIG_ALL_KMODS=y' .config >> tmp/.diffconfig.head grep '^CONFIG_DEVEL=y' .config >> tmp/.diffconfig.head grep '^CONFIG_TOOLCHAINOPTS=y' .config >> tmp/.diffconfig.head ./scripts/config/conf --defconfig=tmp/.diffconfig.head -w tmp/.diffconfig.stage1 Config.in >/dev/null _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
