mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Fix CONFIG_LINUX_ for linux 3.0
Signed-off-by: Jonas Gorski <jonas.gorski+openwrt@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27184 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -188,7 +188,11 @@ sub target_name($) {
|
||||
sub kver($) {
|
||||
my $v = shift;
|
||||
$v =~ tr/\./_/;
|
||||
$v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
|
||||
if (substr($v,0,2) eq "2_") {
|
||||
$v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
|
||||
} else {
|
||||
$v =~ /(\d+_\d+)(_\d+)?/ and $v = $1;
|
||||
}
|
||||
return $v;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user