I do not believe that users will cleanup kernelsource, when switching rootfs. force it with scripts and Makefile changes from Felix Fietkau <nbd@vd-s.ath.cx>
SVN-Revision: 290master
parent
fb1a0ad0ef
commit
e3a3457a9d
@ -0,0 +1,11 @@ |
||||
#!/usr/bin/perl |
||||
|
||||
my %change = ( |
||||
'ROOTFS' => 'make linux-dirclean' |
||||
); |
||||
|
||||
foreach my $change (keys %change) { |
||||
my $v1 = `grep '$change' .config.test`; |
||||
my $v2 = `grep '$change' .config`; |
||||
$v1 eq $v2 or system($change{$change}); |
||||
} |
Loading…
Reference in new issue