how can I change a software of openwrt and rebuild it in Bin file -
... $make menuconfig select package ... $make ... there many bin files in bin folder.: my question , want change software source code of openwrt , rebuild again. i have try edit source code of build_dir. want rebuild openwrt code refresh newest code of svn. does 1 how that? writing code , synchronizing it: 1) clone official linino repository arduino on machine using git (install using sudo apt-get install git): git clone https://github.com/linino/linino_distro.git 2) own changes in relevant code files, makefiles or whatever need change. 3) whenever want synchronize work latest changes remote master branch in linino repository, need first fetch changes, meaning retrieving them without yet merging them, in 2nd time merge them , resolve conflicts if any: preliminary: if created local branch own changes make sur master branch, need check out master: git checkout master a) fetching latest changes: git fetch master b) merging them changes on local re...