summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsayad2021-01-28 09:19:32 +0600
committersayad2021-01-28 09:19:32 +0600
commitd52fab4b39618968db8402292c673051d151d65c (patch)
treefa0195fcbb4731e5406ceb88742880e2c3b57401
parent45196cafde8c6f12221b55b817664ab4092febab (diff)
downloadaur-d52fab4b39618968db8402292c673051d151d65c.tar.gz
Bug fix
-rw-r--r--customization.cfg2
-rw-r--r--prepare2
2 files changed, 2 insertions, 2 deletions
diff --git a/customization.cfg b/customization.cfg
index 1fc4e8b13306..90850a01d067 100644
--- a/customization.cfg
+++ b/customization.cfg
@@ -11,7 +11,7 @@ _version="5.10"
#### MISC OPTIONS ####
# External config file to use - If the given file exists in path, it will override default config (customization.cfg) - Default is ~/.config/frogminer/linux-tkg.cfg
-_EXT_CONFIG_PATH=~/.config/frogminer/linux-tkg.cfg
+_EXT_CONFIG_PATH=~/.config/linux-tkg.cfg
# [Arch specific] Set to anything else than "true" to limit cleanup operations and keep source and files generated during compilation.
# Default is "true".
diff --git a/prepare b/prepare
index 191b5ab54170..608048c89620 100644
--- a/prepare
+++ b/prepare
@@ -700,7 +700,7 @@ _tkg_srcprep() {
# rq sharing
if [ "$_runqueue_sharing" = "none" ]; then
echo -e "CONFIG_RQ_NONE=y\n# CONFIG_RQ_SMT is not set\n# CONFIG_RQ_MC is not set\n# CONFIG_RQ_MC_LLC is not set\n# CONFIG_RQ_SMP is not set\n# CONFIG_RQ_ALL is not set" >> ./.config
- elif [ -z "$_runqueue_sharing" ] || [ "$_runqueue_sharing" = "smt" ]; then
+ elif [ "$_runqueue_sharing" = "smt" ]; then
echo -e "# CONFIG_RQ_NONE is not set\nCONFIG_RQ_SMT=y\n# CONFIG_RQ_MC is not set\n# CONFIG_RQ_MC_LLC is not set\n# CONFIG_RQ_SMP is not set\n# CONFIG_RQ_ALL is not set" >> ./.config
elif [ "$_runqueue_sharing" = "mc" ]; then
echo -e "# CONFIG_RQ_NONE is not set\n# CONFIG_RQ_SMT is not set\nCONFIG_RQ_MC=y\n# CONFIG_RQ_MC_LLC is not set\n# CONFIG_RQ_SMP is not set\n# CONFIG_RQ_ALL is not set" >> ./.config