Hi,
A couple months back, I followed the instructions here https://www.digikey.com/eewiki/display/linuxonarm/BeagleBone+Black. I checked out the am33x-v4.19 (Longterm 4.19.x) and built the kernel (4.19.106-bone49) with no problems.
Today I run ‘make menuconfig’, while in the KERNEL folder, to enable serial gadget support. I saved the config, cd back to bb-kernel folder and run './tools/rebuild.sh. I have previously made kenel config changes and run ./tools/rebuild.sh with no problem, but today I get the following
jak@ws271:~/projects/linuxonarm/bb-kernel$ ./tools/rebuild.sh
+ Detected build host [Ubuntu 18.04.5 LTS]
+ host: [x86_64]
+ git HEAD commit: [3206723e911cbdf6fd1feb73389d2b87a5f5b8b8]
-----------------------------
cpio: cpio (GNU cpio) 2.12
lzop: lzop 1.03
Using Existing Toolchain: gcc_arm_gnueabihf_8
-----------------------------
scripts/gcc: Using: arm-linux-gnueabihf-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-----------------------------
CROSS_COMPILE=/home/jak/projects/linuxonarm/bb-kernel/dl/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/bin/arm-linux-gnueabihf-
scripts/kconfig/conf --oldconfig Kconfig
*
* Restart config...
*
*
* Configure standard kernel features (expert users)
*
Configure standard kernel features (expert users) (EXPERT) [Y/?] y
Enable 16-bit UID system calls (UID16) [Y/n/?] (NEW) ^Cscripts/kconfig/Makefile:69: recipe for target 'oldconfig' failed
make[1]: *** [oldconfig] Interrupt
Makefile:534: recipe for target 'oldconfig' failed
make: *** [oldconfig] Interrupt
I was surprised that I was put into ‘expert’ mode instead of bringing up menuconfig. I pressed ^C to stop the rebuild. I don’t want to run build_kernel.sh because I don’t want the kernel source files updated.
What did I mess up to cause rebuild to go into ‘expert’ mode?
Thank you,