- Oct 28, 2020
-
-
Adam Wujek authored
add new OID: wrsStartCntRvlan Signed-off-by:
Adam Wujek <dev_public@wujek.eu>
-
Adam Wujek authored
Signed-off-by:
Adam Wujek <dev_public@wujek.eu>
-
Adam Wujek authored
Don't start radiousvlan if CONFIG_RVLAN_DAEMON is not present in dot-config Signed-off-by:
Adam Wujek <dev_public@wujek.eu>
-
- Oct 22, 2020
-
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
This simply sends SIGUSR1 to radiusvlan and sorts the output file. Example: wri2 (001bc5090845 <-> 001bc509007d): state configured, vlan 4094, pid 0, fd -1 wri3 (001bc5090846 <-> 00e04c1bfd8d): state configured, vlan 31, pid 0, fd -1 wri4 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri5 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri6 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri7 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri8 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri9 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri10 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri11 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri12 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri13 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri14 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri15 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri16 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri17 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 wri18 (000000000000 <-> ): state down, vlan 0, pid 0, fd -1 Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
The full set of /etc/raddb/dictionary* is overkill, we only need a few symbols from these three files, if we run radclient. Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
[Thanks a lot to Enkhbold Ochirsuren of GSI who traced back a strange behaviour to the "printf" incompatibility]. This removes "printf -v <outputvar> <format> ..." which is only available in bash. These needless incompatible extensions to standard commands are a source of endless headaches. New features must spit an error when unavailable (i.e., bash people should add vprintf, not break printf, imho) In this case, my previous "fix" to this file was incomplete, because I fixed a bashism but didn't see this other one. Also, this changes the shebang to call sh (which is already done by rcS: only the interactive execution now uses sh instead of bash). Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
In sh, string comparison for equality is "=", not "==". Bash accepts either operator but suggests to use "=" for posix conformance. Our /bin/sh is currently busybox, which accepts "==" like bash, but if you use ash or dash it fails: $ CONFIG_FOO=y $ if [ "$CONFIG_FOO" = "y" ]; then echo ok; fi ok $ if [ "$CONFIG_FOO" == "y" ]; then echo ok; fi dash: 3: [: y: unexpected operator Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
- Oct 08, 2020
-
-
Alessandro Rubini authored
Output for the mask parameter was wrong if high bits are zero. Not exposed by default (mask is 0xffffffff). But I got VID FID MASK DROP PRIO PRIO_OVERRIDE 102 102 0x 7ffff NO -- NO Which now is 102 102 0x0007ffff NO -- NO Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
- Oct 07, 2020
-
-
Alessandro Rubini authored
This adds the git headers, so we can easily rebuild a buildroot-for-wrs tree to add more patches. This is how I do it now (where "wrs-build" and "wr-switch-sw" are at the same directory level. cd wrs-build mkdir tmp; cd tmp tar xf ../downloads/buildroot-2016.02.tar.bz2 cd buildroot-2016.02/ git init; git add .; git commit -m "buildroot-2016.02 as untarred" git am ../../../wr-switch-sw/patches/buildroot/00* mv .git ../../build/buildroot-2016.02/ cd ../../build/buildroot-2016.02 <work-here> Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
Alessandro Rubini authored
There is a monit-related problem in commit 9bc9dd16 . The commit renames /etc/init.d/lldpd.sh into /etc/init.d/lldpd.bash whle adding a single stanza. Try "git diff e61eb08 9ebc5e2" to see the difference. But monit still uses the old name. Instead of changing monit (a two-liner, but adds noise because of .bash), this renames back the file to .sh and removes the needless bashism in the new stanza. Please note that calling stuff ".bash" makes no sense (suffixes make no sense most of the time!). The only thing rcS does is checking if the name is "*.sh", to just read it in the current shell instead of executing. So anything not ".sh" is executed, we don't need to special case .bash, .py or whatever. Signed-off-by:
Alessandro Rubini <rubini@gnudd.com>
-
- Sep 14, 2020
-
-
Grzegorz Daniluk authored
-
- Aug 28, 2020
-
-
Michal Wasiak authored
RX LLDP frames worked without any change. Signed-off-by:
Michal Wasiak <michal.wasiak@gmail.com>
-
- Aug 13, 2020
-
-
Kinga Wujek authored
Signed-off-by:
Kinga Wujek <dev_public@wujek.eu>
-
- Jul 11, 2020
-
-
Kinga Wujek authored
Signed-off-by:
Kinga Wujek <dev_public@wujek.eu>
-
Kinga Wujek authored
Note: --Checking of checksums was added in v5.0 of firmware --Added note about limiting the size od LLDP frame Signed-off-by:
Kinga Wujek <dev_public@wujek.eu>
-
- Jul 06, 2020
-
-
Kinga Wujek authored
Signed-off-by:
Kinga Wujek <dev_public@wujek.eu>
-
- Jun 12, 2020
- Jun 11, 2020
-
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
- Jun 10, 2020
-
-
Maciej Lipinski authored
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
- Jun 09, 2020
-
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
- Jun 08, 2020
-
-
Grzegorz Daniluk authored
-
Grzegorz Daniluk authored
-
Maciej Lipinski authored
see: ppsi#25
-
- May 26, 2020
-
-
Grzegorz Daniluk authored
-
- May 25, 2020
-
-
Grzegorz Daniluk authored
-