mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 14:16:40 +00:00
linux: allow manual answers for oldconfig handling
By setting INTERACTIVE_CONFIG="yes", allow the manual configuration of the new options available in the .config.
This commit is contained in:
parent
557e82187e
commit
4914433ccb
@ -172,7 +172,13 @@ pre_make_target() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
kernel_make listnewconfig
|
kernel_make listnewconfig
|
||||||
|
if [ "${INTERACTIVE_CONFIG}" = "yes" ]; then
|
||||||
|
# manually answer .config changes
|
||||||
|
kernel_make oldconfig
|
||||||
|
else
|
||||||
|
# accept default answers for .config changes
|
||||||
yes "" | kernel_make oldconfig > /dev/null
|
yes "" | kernel_make oldconfig > /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f "${DISTRO_DIR}/${DISTRO}/kernel_options" ]; then
|
if [ -f "${DISTRO_DIR}/${DISTRO}/kernel_options" ]; then
|
||||||
while read OPTION; do
|
while read OPTION; do
|
||||||
|
Loading…
x
Reference in New Issue
Block a user