📝 Made note of listnewconfig

This commit is contained in:
tomit4 2025-12-11 10:20:13 -08:00
parent 722c8d200b
commit 775d7947fa

View file

@ -149,6 +149,21 @@ keep that in mind should you change hardware in the future.
In order to use the old config, copy the original config into the In order to use the old config, copy the original config into the
`/usr/src/linux` that you wish to compile. Once done run: `/usr/src/linux` that you wish to compile. Once done run:
```sh
make listnewconfig
```
This will output a list of all the new kernel flags and their defaults. It is
highly recommended to output this to a txt file to be reviewed later should
something break you at least know which flags were added and what might needed
to be adjusted.
```sh
make listnewconfig > ~/newconfig.txt
```
Then go ahead and run `olddefconfig`:
```sh ```sh
make olddefconfig make olddefconfig
``` ```