Skip to content
This repository was archived by the owner on Sep 7, 2020. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7e04718
btlvf: format yaml files
Jun 16, 2020
7af6b78
documentation: agent: Add UML diaram for Backhaul STA steering
Jun 11, 2020
59de462
tests: add device to boardfarm config
abelog Jun 2, 2020
41d2a80
tests: boardfarm: add prplWRT device
abelog Jun 2, 2020
827a745
tests: environment.py: complete prplWRT entities
abelog Jun 2, 2020
f985a52
tests: boardfarm: InitialApConfig - too greedy regex search
abelog Jun 2, 2020
a714d81
tests: boardfarm: move to ssh as primary connection
abelog Jun 5, 2020
9a855a8
tests: boardfarm: docker devices support of InitialAPConfig teardown
abelog Jun 10, 2020
89e1bce
btl: add if_index to UDS header of received message
mariomaz Jun 15, 2020
4edaf3d
agent: backhaul: extend topology database with if_index and MAC
mariomaz Jun 15, 2020
72c58f8
bwl: initialize SStaStats
rmelotte Jun 17, 2020
6dd3866
mon_wlan_hal_dwpal: parse SNR and ShortTermRSSIAverage as strings
rmelotte Jun 17, 2020
d17285b
devcontainer: add missing packages
Jun 10, 2020
975f728
vscode_launch: beerocks_fronthaul support
Jun 10, 2020
d2d7e02
slave: backhaul manager: fixed weird curly brackets
RanRegev Jun 18, 2020
2489113
common: prplmesh_utils.sh: add bml execute func
itayx Jun 10, 2020
d9d1b58
common: prplmesh_utils.sh: use BML operational check
itayx Jun 10, 2020
9e60f1e
prplmesh_uttils.sh: use SIGTERM in killall_program()
Jun 18, 2020
fd9ffe5
mergify: allow status check failures
arnout Jun 22, 2020
c81a31c
tlvf: fix tlv_mac_tlv in msgTopologyDiscovery
mariomaz Jun 10, 2020
08b2c5f
tlvf: rename tlvAlMacAddressType to tlvAlMacAddress
mariomaz Jun 10, 2020
f3a2669
bcl: change return type of linux_get_iface_index
mariomaz Jun 10, 2020
27adc96
btl: add iface_name param to send_cmdu functions
mariomaz Jun 11, 2020
2408bfe
agent: backhaul: send Topology Discovery on all interfaces
mariomaz Jun 11, 2020
1605bb7
framework: tlvf: Turn on Backhaul STA Steering TLV's
Jun 11, 2020
7af3b19
tlvf: CmduMessageRx: Add case for Backhaul STA Steering
Jun 15, 2020
d2e2989
agent: backhaul_manager: Refactor handler for AP_METRICS_RESPONSE_MES…
Jun 9, 2020
4207979
test: test_flowys.py added test_ap_metrics_interval_response
RanRegev Jun 16, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ RUN apt-get update \
# Install C++ tools
&& apt-get -y install build-essential cmake cppcheck valgrind \
# Libraries
libjson-c-dev python-yaml libzmq3-dev libssl-dev \
libjson-c-dev python-yaml python3-yaml libzmq3-dev libssl-dev \
libncurses-dev libreadline-dev libnl-3-dev libnl-route-3-dev libnl-genl-3-dev \
# Install Helper tools
bash-completion locales ninja-build pkg-config shellcheck \
flake8 clang-format vim \
# Network capturing
tcpdump openssh-server
tcpdump tshark wireshark-common openssh-server

# Install podman
RUN echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/xUbuntu_$(lsb_release -sr)/ /" \
Expand Down
1 change: 0 additions & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ pull_request_rules:
- "#changes-requested-reviews-by=0" # Changes requested blocks the merge
- "label=ready for merge" # Must have ready for merge label
- "label!=don't merge" # Don't merge label blocks the merge
- "#status-failure=0"
# Just to be sure that we don't consider it as passed when the status checks haven't even
# started yet.
- "#status-success>=3"
Expand Down
12 changes: 6 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
}
},
{
"name": "(gdb) GATEWAY - Attach to beerocks_monitor",
"name": "(gdb) GATEWAY - Attach to beerocks_fronthaul",
"type": "cppdbg",
"request": "attach",
"program": "${workspaceFolder}/build/install/bin/beerocks_monitor",
"program": "${workspaceFolder}/build/install/bin/beerocks_fronthaul",
"processId": "${command:pickRemoteProcess}",
"pipeTransport": {
"pipeCwd": "${workspaceRoot}",
Expand Down Expand Up @@ -125,10 +125,10 @@
}
},
{
"name": "(gdb) REPEATER #1 - Attach to beerocks_monitor",
"name": "(gdb) REPEATER #1 - Attach to beerocks_fronthaul",
"type": "cppdbg",
"request": "attach",
"program": "${workspaceFolder}/build/install/bin/beerocks_monitor",
"program": "${workspaceFolder}/build/install/bin/beerocks_fronthaul",
"processId": "${command:pickRemoteProcess}",
"pipeTransport": {
"pipeCwd": "${workspaceRoot}",
Expand Down Expand Up @@ -173,10 +173,10 @@
}
},
{
"name": "(gdb) REPEATER #2 - Attach to beerocks_monitor",
"name": "(gdb) REPEATER #2 - Attach to beerocks_fronthaul",
"type": "cppdbg",
"request": "attach",
"program": "${workspaceFolder}/build/install/bin/beerocks_monitor",
"program": "${workspaceFolder}/build/install/bin/beerocks_fronthaul",
"processId": "${command:pickRemoteProcess}",
"pipeTransport": {
"pipeCwd": "${workspaceRoot}",
Expand Down
1 change: 1 addition & 0 deletions agent/src/beerocks/slave/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ file(GLOB beerocks_agent_sources
${MODULE_PATH}/link_metrics/*.c*
${MODULE_PATH}/platform_manager/*.c*
${MODULE_PATH}/gate/*.c*
${MODULE_PATH}/backhaul_manager/internal/*.c*
${MODULE_PATH}/*.c*
)

Expand Down
Loading