2013-05-19 12:36:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
|
|
|
2013-05-20 16:31:47 +02:00
|
|
|
# Copy the initramfs back to the new rootfs for proper shutdown.
|
2013-05-22 08:08:02 +02:00
|
|
|
KVER=$(uname -r)
|
2014-06-29 12:36:51 +02:00
|
|
|
if [ -x /usr/bin/systemctl ]; then
|
|
|
|
cp /run/initramfs/live/boot/initrd $NEWROOT/boot/initramfs-${KVER}.img
|
|
|
|
fi
|