mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-21 21:03:56 +00:00
In debian/rules, remove manual file installation. Move them to debian/*.install. Move all Debian specific installed files to debian/extra/.
24 lines
403 B
Bash
Executable File
24 lines
403 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
PREREQS=""
|
|
|
|
prereqs() { echo "$PREREQS"; }
|
|
|
|
case "$1" in
|
|
prereqs)
|
|
prereqs
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# Stop udevd, we'll miss a few events while we run init, but we catch up
|
|
udevadm control --exit
|
|
|
|
# move the /dev tmpfs to the rootfs
|
|
mount -n -o move /dev ${rootmnt}/dev
|
|
|
|
# create a temporary symlink to the final /dev for other initramfs scripts
|
|
nuke /dev
|
|
ln -s ${rootmnt}/dev /dev
|
|
|