Less debug

This commit is contained in:
2023-01-29 17:17:50 -05:00
parent 7431b22076
commit ce8a642658

View File

@@ -642,10 +642,8 @@ fromSource() {
# Add custom packages # Add custom packages
for pkg in ${P_ARR[packages]}; do for pkg in ${P_ARR[packages]}; do
if [[ $pkg == -* ]]; then if [[ $pkg == -* ]]; then
debug "Removing package ${pkg#-}"
config_opts+=("CONFIG_PACKAGE_${pkg#-}=n") # remove package config_opts+=("CONFIG_PACKAGE_${pkg#-}=n") # remove package
else else
debug "Adding package $pkg"
config_opts+=("CONFIG_PACKAGE_$pkg=y") # add package config_opts+=("CONFIG_PACKAGE_$pkg=y") # add package
fi fi
done done