Hi,
this is not how it works. Any changes you do to the source cache are void once build starts to ensure they are clean.
For customizing the config I suggest to either use
code {
font-family: Consolas,"courier new";
color: crimson;
background-color: rgba(0, 0, 0, 0.2);
padding: 2px;
font-size: 105%;
}
KERNEL_CONFIGURE=yes so you will be asked for modifications or use
code {
font-family: Consolas,"courier new";
color: crimson;
background-color: rgba(0, 0, 0, 0.2);
padding: 2px;
font-size: 105%;
}
kernel-config
code {
font-family: Consolas,"courier new";
color: crimson;
background-color: rgba(0, 0, 0, 0.2);
padding: 2px;
font-size: 105%;
build command to output a custom kernel config file without building.
For modifying the sources use
code {
font-family: Consolas,"courier new";
color: crimson;
background-color: rgba(0, 0, 0, 0.2);
padding: 2px;
font-size: 105%;
}
kernel-patch or boot-patch commands. This will pause the process once all given patches were applied and asks you to do modifications to the source (from a different terminal window or whatever method you'd prefer). When being done it will compare and create proper patch files from your modifications.
This and more you can read in the docs: https://docs.armbian.com/Developer-Guide_Overview/