From 21c29c850a91fae46f556b95d9ef9167393c67ab Mon Sep 17 00:00:00 2001 From: Polynomdivision Date: Sun, 25 Jun 2017 23:19:09 +0200 Subject: [PATCH] Add installation instructions --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/README.md b/README.md index 2ca2b34..4e31a8a 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,49 @@ Decentralized WiFi Controller |[patches-pending](https://github.com/berlin-open-wireless-lab/patches-pending)|Pending LEDE / OpenWrt Patches DAWN is depending on| |[bowl-feed](https://github.com/berlin-open-wireless-lab/bowl-feed)|Feed for DAWN| +## Installation + +### Compiling LEDE with patch + +Clone LEDE source code + + git clone https://github.com/lede-project/source.git + +Switch to directory + + cd lede/ + +Clone patch + + git clone https://github.com/berlin-open-wireless-lab/patches-pending.git + +Apply patches + + quilt apply + +Updating feeds + + ./scripts/feeds update -a && ./scripts/feeds/install -a + +Configure image + + make menuconfig + +Compile image + + make -j $(nproc) + +### Compiling DAWN + +Add [bowlfeed](https://github.com/berlin-open-wireless-lab/bowl-feed.git) to feeds.conf + + src-git bowlfeed git@github.com:berlin-open-wireless-lab/bowl-feed.git + +Slect dawn under + + make menuconfig + +Compile + + make package/dawn/compile +