!!! Upcoming Migration from LDAP to SSO Authentication for RDKM Managed Applications !!!
For more information, including FAQs and resources, please visit the link below:
RDKM-SSO
***RDK Central Wiki will be down while being SSO migration (Phase -1) on 11/09 starting 7am EST. System will be down approximately 8 hours. During this time Wiki will not be available, please plan accordingly. Any questions or comments please feel free to contact RDK Support team support@rdkcentral.com . Thank you. ***
For more information, including FAQs and resources, please visit the link below:
RDKM-SSO
***RDK Central Wiki will be down while being SSO migration (Phase -1) on 11/09 starting 7am EST. System will be down approximately 8 hours. During this time Wiki will not be available, please plan accordingly. Any questions or comments please feel free to contact RDK Support team support@rdkcentral.com . Thank you. ***
1 Comment
Amarnath Hullur Subramanyam
Build steps for compilation on Raspberry Pi with Raspbian OS
Prerequisites:
After installation below are additional packages to be installed for build, db and execution.
sudo apt-get update;
sudo apt-get upgrade;
sudo apt-get install vim;
sudo apt-get install libev-dev;
sudo apt-get install libjansson-dev;
sudo apt-get install zlib1g-dev;
sudo apt-get install libnl-3-dev;
sudo apt-get install libnl-genl-3-dev;
sudo apt-get install libnl-route-3-dev;
sudo apt-get install libavro-dev;
sudo apt-get install libcjson1 libcjson-dev;
sudo apt-get install libssl-dev;
sudo apt-get install uuid-dev;
sudo apt-get install libmysqlcppconn-dev;
sudo apt-get install libreadline-dev;
sudo apt-get install iptables;
sudo apt install mariadb-server;
Build Instructions:
1. In a working directory git clone the OneWifi in generic folder and unified-wifi-mesh repository
mkdir easymesh_project
cd easymesh_project
git clone https://github.com/rdkcentral/OneWifi.git generic
git clone https://github.com/rdkcentral/unified-wifi-mesh.git
2. Run the makefile of OneWifi with setup option to pull in other dependent repository. This is a one time operation.
cd generic
make -f build/linux/makefile setup
3. Build the Onewifi with make command
make -f build/linux/makefile all
4. Build easymesh components in the unified-easy-mesh folder
cd unified-easy-mesh/build/ctrl
make all
cd unified-easy-mesh/build/cli
make all
cd unified-easy-mesh/build/agent
make all