mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-28 11:43:25 +02:00
Merge branch 'master' of ssh://git.ipfire.org/pub/git/ipfire-2.x
This commit is contained in:
@@ -272,7 +272,7 @@ my @temp;
|
|||||||
foreach (@channellist_cmd){
|
foreach (@channellist_cmd){
|
||||||
$_ =~ /(.*) \[(\d+)(.*)\]/;
|
$_ =~ /(.*) \[(\d+)(.*)\]/;
|
||||||
$channel = $2;chomp $channel;
|
$channel = $2;chomp $channel;
|
||||||
if ( $channel =~ /\d+/ ){push(@temp,$channel);}
|
if ( $channel =~ /\d+/ ){push(@temp,$channel + 0);}
|
||||||
}
|
}
|
||||||
@channellist = @temp;
|
@channellist = @temp;
|
||||||
} else {
|
} else {
|
||||||
@@ -283,7 +283,7 @@ my @temp;
|
|||||||
foreach (@channellist_cmd){
|
foreach (@channellist_cmd){
|
||||||
$_ =~ /(.*)Channel (\d+)(.*):/;
|
$_ =~ /(.*)Channel (\d+)(.*):/;
|
||||||
$channel = $2;chomp $channel;
|
$channel = $2;chomp $channel;
|
||||||
if ( $channel =~ /\d+/ ){push(@temp,$channel);}
|
if ( $channel =~ /\d+/ ){push(@temp,$channel + 0);}
|
||||||
}
|
}
|
||||||
@channellist = @temp;
|
@channellist = @temp;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
|
|||||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||||
PROG = hostapd
|
PROG = hostapd
|
||||||
PAK_VER = 31
|
PAK_VER = 32
|
||||||
|
|
||||||
DEPS = ""
|
DEPS = ""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user