I am using buildroot and did not see a difference between:
make nconfig
and
make linux-nconfig
Is there a difference?
I am using buildroot and did not see a difference between:
make nconfig
and
make linux-nconfig
Is there a difference?
make nconfig
runs the configuration of Buildroot itself (i.e. selecting which packages to build, which architecture, which toolchain, etc). make linux-nconfig
runs the configuration of the Linux kernel. It will first download and extract the kernel, and then run the kernel Kconfig infrastructure. It allows you to select CPU, drivers, filesystems etc.