[scripts] download.pl: adjust kernel download urls for longterm and testing releases
[openwrt.git] / scripts / diffconfig.sh
1 #!/bin/sh
2 grep \^CONFIG_TARGET_ .config | head -n3 > tmp/.diffconfig.head
3 ./scripts/config/conf -D tmp/.diffconfig.head -w tmp/.diffconfig.stage1 Config.in >/dev/null
4 ./scripts/kconfig.pl '>+' tmp/.diffconfig.stage1 .config >> tmp/.diffconfig.head
5 ./scripts/config/conf -D tmp/.diffconfig.head -w tmp/.diffconfig.stage2 Config.in >/dev/null
6 ./scripts/kconfig.pl '>' tmp/.diffconfig.stage2 .config >> tmp/.diffconfig.head
7 cat tmp/.diffconfig.head
8 rm -f tmp/.diffconfig tmp/.diffconfig.head
This page took 0.062245 seconds and 5 git commands to generate.