blob: 9a448cbc6ad011d3e9a8c0da3457e8df25bd48bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/perl
use strict;
my $need_changes = 0;
my $out;
open IN,".config";
while (<IN>) {
if (s/CONFIG_VIDEO_CX88_MPEG=y/CONFIG_VIDEO_CX88_MPEG=m/) {
$need_changes=1;
$out .= $_;
}
}
close IN;
if ($need_changes) {
printf("There's a known bug with the building system with this kernel. Working around.\n");
open OUT, ">.config";
print OUT $out;
close OUT;
}
|