summaryrefslogtreecommitdiffstats
path: root/remote/includes/kernel.inc
diff options
context:
space:
mode:
authorSimon Rettberg2014-06-16 19:09:46 +0200
committerSimon Rettberg2014-06-16 19:09:46 +0200
commit4acd9186d8a99f347ddc192b1ac8aceee4d6380e (patch)
tree4f5d6ed6eb95999ea5b070079bac8e2603fb3fa5 /remote/includes/kernel.inc
parent[rfs-stage31] Restructured init script and includes a bit... could use more work (diff)
parentdont exit, else xfwm4 will not be created (diff)
downloadtm-scripts-4acd9186d8a99f347ddc192b1ac8aceee4d6380e.tar.gz
tm-scripts-4acd9186d8a99f347ddc192b1ac8aceee4d6380e.tar.xz
tm-scripts-4acd9186d8a99f347ddc192b1ac8aceee4d6380e.zip
Merge branch 'master' of dnbd3:openslx-ng/tm-scripts
Diffstat (limited to 'remote/includes/kernel.inc')
-rw-r--r--remote/includes/kernel.inc11
1 files changed, 7 insertions, 4 deletions
diff --git a/remote/includes/kernel.inc b/remote/includes/kernel.inc
index 839edcc3..dc7f7f12 100644
--- a/remote/includes/kernel.inc
+++ b/remote/includes/kernel.inc
@@ -53,6 +53,8 @@ copy_kernel_modules() {
check_kernel_base_dir
+
+ local OLD_DIR="$(pwd)"
#
# process modules list
@@ -121,18 +123,19 @@ copy_kernel_modules() {
cp "${KERNEL_MODULES_DIR}/modules.builtin" "${TARGET_BUILD_DIR}/${KERNEL_MODULES_DIR}"
# with modules.order and modules.builtin, we can run depmod for the rest of the files
depmod -b "${TARGET_BUILD_DIR}" -a "${KERNEL_NEW_VERSION}"
-
- cd - >/dev/null
+
+ # go back to wherever we were
+ cd "${OLD_DIR}" || perror "Could not cd back to ${OLD_DIR}."
}
copy_firmware() {
pinfo "Copying firmware for kernel ${KERNEL_CURRENT_VERSION}..."
[ -z "${REQUIRED_FIRMWARE}" ] && perror "REQUIRED_FIRMWARE is empty. Check your config file."
- local OLD_DIR=$(pwd)
check_kernel_base_dir
+ local OLD_DIR=$(pwd)
#
# process firmware list
#
@@ -199,7 +202,7 @@ copy_firmware() {
fi
fi
- cd "$OLD_DIR"
+ cd "${OLD_DIR}" || perror "Could not cd back to ${OLD_DIR}."
}
copy_kernel() {