| How to update the defconfig for openwrt in the config direcotry |
| |
| In the openwrt top dir, |
| |
| 1) need to choose the profile config, take defconfig_pxa1826 profile for example, |
| $ make defconfig_pxa1826 |
| |
| 2) Above is Marvell defined defconfig per profile, it already set proper target and profile. |
| Only if you want to add a new profile, need to change target or profile here |
| $ make menuconfig //(it can be skipped in most times if not to change profile) |
| (choose, save and exit) |
| |
| 3) Next, only if want to update the kernel config in target/linux/mmp/pxa1826/, |
| $ make kernel_menuconfig |
| choose, save and exit |
| |
| 4) Next again, when you want to update the openwrt settings or you have just updated the kernel config |
| $ make menuconfig |
| (choose), save and exit |
| |
| 5) Last, save the new config file with configurations updated |
| $ cp .config config/defconfig_pxa1826 |
| and build |
| $ make -j2 V=99 |
| |