From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH v2 8/8] wlanap.cgi: Access db.txt in place of using regdbdump on regulatory.bin Date: Wed, 04 Aug 2021 16:32:57 +0200 Message-ID: <6C8C32E5-F7BE-4A54-8D9F-A70B6855DE20@ipfire.org> In-Reply-To: <20210728172932.2737967-8-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3262350466407999267==" List-Id: --===============3262350466407999267== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello, > On 28 Jul 2021, at 19:29, Adolf Belka wrote: >=20 > - wlanap.cgi was using regdbdump from crda to create a text based list of t= he > wireless settings by country database. > - With the removal of crda as part of the removal of python2 this option co= uld not be > used. > - wireless-regdb also has a text based database list in the source tarball = and this > patch makes wlanap.cgi read this list into the @countrylist_cmd variable > - This needs to be tested by someone that has an IPFire system with wifi th= at can access > and evaluate wlanap.cgi to confirm that this change functions as expected. >=20 > Signed-off-by: Adolf Belka > --- > html/cgi-bin/wlanap.cgi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/html/cgi-bin/wlanap.cgi b/html/cgi-bin/wlanap.cgi > index eba5fe774..6954eb4f0 100644 > --- a/html/cgi-bin/wlanap.cgi > +++ b/html/cgi-bin/wlanap.cgi > @@ -312,7 +312,7 @@ if ( $channel =3D~ /\d+/ ){push(@temp,$channel + 0);} > push(@channellist, @temp); > } >=20 > -my @countrylist_cmd =3D `regdbdump /usr/lib/crda/regulatory.bin 2>/dev/nul= l`; > +my @countrylist_cmd =3D `/lib/firmware/db.txt`; This will try to execute the text file. What you want is probably something like: open(FILE, =E2=80=9C; close(FILE); > # get available country codes >=20 > my @temp =3D "00"; > --=20 > 2.32.0 >=20 --===============3262350466407999267==--