From 6e2323db3e690119f435170e882f8a6c3cae4e82 Mon Sep 17 00:00:00 2001 From: AuxXxilium Date: Mon, 25 Mar 2024 20:11:01 +0100 Subject: [PATCH] consts: fix Signed-off-by: AuxXxilium --- files/initrd/opt/arc/include/consts.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/files/initrd/opt/arc/include/consts.sh b/files/initrd/opt/arc/include/consts.sh index 3fbd8b18..f690df1b 100755 --- a/files/initrd/opt/arc/include/consts.sh +++ b/files/initrd/opt/arc/include/consts.sh @@ -3,16 +3,16 @@ ARC_VERSION="23.1.1" ARC_TITLE="Arc ${ARC_VERSION}" # Define paths -PART1_PATH="/mnt/p1" -PART2_PATH="/mnt/p2" -PART3_PATH="/mnt/p3" -DSMROOT_PATH="/mnt/dsmroot" -TMP_PATH="/tmp" -UPLOAD_PATH="${TMP_PATH}/upload" +PART1_PATH="${CHROOT_PATH}/mnt/p1" +PART2_PATH="${CHROOT_PATH}/mnt/p2" +PART3_PATH="${CHROOT_PATH}/mnt/p3" +DSMROOT_PATH="${CHROOT_PATH}/mnt/dsmroot" +TMP_PATH="${CHROOT_PATH}/tmp" UNTAR_PAT_PATH="${TMP_PATH}/DSM" RAMDISK_PATH="${TMP_PATH}/ramdisk" LOG_FILE="${TMP_PATH}/log.txt" +UPLOAD_PATH="${TMP_PATH}/upload" USER_CONFIG_FILE="${PART1_PATH}/user-config.yml" GRUB_PATH="${PART1_PATH}/boot/grub"