From efe09d27d848eaf67b4412e6b6497d7232d6e705 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krizs=C3=A1n=20P=C3=A9ter?= Date: Tue, 29 Oct 2024 22:12:23 +0100 Subject: [PATCH] Moved configuration to lfs_configs folder --- lfsSetup.sh | 4 ++-- configuration => lfs_configs/configuration | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename configuration => lfs_configs/configuration (100%) diff --git a/lfsSetup.sh b/lfsSetup.sh index 7b50968..e430a76 100755 --- a/lfsSetup.sh +++ b/lfsSetup.sh @@ -127,7 +127,7 @@ echo Patching optimization config file... sed -i -E '/DEF_OPT_MODE=/s/noOpt/O3pipe_march/g' "$DIR_SETUP/optimize/opt_config" # Copy jhalfs config file and adjust some settings in it -cp -iv configuration "$DIR_SETUP/" +cp -iv lfs_configs/configuration "$DIR_SETUP/" echo Patching setup configuration file... FILE_CFG="$DIR_SETUP/configuration" sed -i -E "\@BUILDDIR=\"xxx\"@s@xxx@$1@g" "$FILE_CFG" @@ -137,4 +137,4 @@ sed -i -E "\@KEYMAP=\"xxx\"@s@xxx@$(localectl | grep Keymap | awk -F' ' '{printf # Enter to setup folder and start installer cd "$DIR_SETUP" -yes "yes" | ./jhalfs run \ No newline at end of file +yes "yes" | ./jhalfs run diff --git a/configuration b/lfs_configs/configuration similarity index 100% rename from configuration rename to lfs_configs/configuration