OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
initramfs-tools
/
scripts
/
init-bottom
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:20 AM
rwxr-xr-x
📄
cloud-initramfs-dyn-netconf
5.08 KB
09/20/2018 01:29:41 PM
rwxr-xr-x
📄
copymods
2.01 KB
09/20/2018 01:29:41 PM
rwxr-xr-x
📄
lvm2
370 bytes
01/23/2020 03:45:10 PM
rwxr-xr-x
📄
overlayroot
24.85 KB
09/20/2018 01:29:41 PM
rwxr-xr-x
📄
plymouth
186 bytes
04/04/2019 03:41:18 PM
rwxr-xr-x
📄
udev
572 bytes
12/10/2021 09:15:07 AM
rwxr-xr-x
Editing: udev
Close
#!/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; fall back to util-linux mount that does # not understand -o move mount -n -o move /dev ${rootmnt}/dev || mount -n --move /dev ${rootmnt}/dev # create a temporary symlink to the final /dev for other initramfs scripts if command -v nuke >/dev/null; then nuke /dev else rm -rf /dev fi ln -s ${rootmnt}/dev /dev