-
Notifications
You must be signed in to change notification settings - Fork 1
1. Getting Started.
Amit Vitekar edited this page Jul 11, 2018
·
1 revision
The source code of OpenWrt Chaos Calmer is available at https://github.com/openwrt/openwrt.git but for this, you need to install some libraries and then clone it.
sudo apt-get update
sudo apt-get install git-core build-essential libssl-dev libncurses5-dev unzip gawk zlib1g-dev
sudo apt-get install subversion mercurial
git clone https://github.com/openwrt/openwrt.git
But it doesn't come with all the options like Luci by default.
make distclean
removes the feeds so make sure to update feeds after every make distclean
So to add them you need to update feeds by executing the following commands:-
cd openwrt
./scripts/feeds update -a
./scripts/feeds install -a
Now you are ready to configure your OS:-
make menuconfig