Skip to content

Commit

Permalink
Merge pull request #5 from AuxXxilium/dev
Browse files Browse the repository at this point in the history
modules: fix
  • Loading branch information
AuxXxilium committed Mar 10, 2024
2 parents 6f9a67d + b501a31 commit 52f9b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/initrd/opt/arc/include/modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function getAllModules() {
mkdir -p "${TMP_PATH}/modules"
local KERNEL="$(readConfigKey "arc.kernel" "${USER_CONFIG_FILE}")"
if [ "${KERNEL}" = "custom" ]; then
tar zxf "${CUSTOM_PATH}/modules.tgz" -C "${TMP_PATH}/modules"
tar zxf "${CUSTOM_PATH}/modules-${PLATFORM}-${KVER}.tgz" -C "${TMP_PATH}/modules"
else
tar zxf "${MODULES_PATH}/${PLATFORM}-${KVER}.tgz" -C "${TMP_PATH}/modules"
fi
Expand Down

0 comments on commit 52f9b0d

Please sign in to comment.