blob: 93b0d1d19a7476d86a4182fee45ef9a97f366cd3 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001How to update the defconfig for openwrt in the config direcotry
2
3In the openwrt top dir,
4
51) need to choose the profile config, take defconfig_pxa1826 profile for example,
6$ make defconfig_pxa1826
7
82) Above is Marvell defined defconfig per profile, it already set proper target and profile.
9Only if you want to add a new profile, need to change target or profile here
10$ make menuconfig //(it can be skipped in most times if not to change profile)
11(choose, save and exit)
12
133) Next, only if want to update the kernel config in target/linux/mmp/pxa1826/,
14$ make kernel_menuconfig
15choose, save and exit
16
174) Next again, when you want to update the openwrt settings or you have just updated the kernel config
18$ make menuconfig
19(choose), save and exit
20
215) Last, save the new config file with configurations updated
22$ cp .config config/defconfig_pxa1826
23and build
24$ make -j2 V=99
25