Since this reason: tc
of busybox has bug, which has not yet been fixed.
I’d like to set
# CONFIG_TC is not defined
but I don’t want to go into menuconfig.
In other words,
I want to add Patching command
to my build script for build busybox, like here:
make defconfig
# Patching command here #
make
then # Patching command her #
will replace CONFIG_TC=y
with # CONFIG_TC is not defined
in the .config file.
How do I impliment # Patching command her #
?