OXIESEC PANEL
- Current Dir:
/
/
snap
/
core
/
17210
/
usr
/
share
/
initramfs-tools
/
hooks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/02/2024 07:52:55 PM
rwxr-xr-x
📄
busybox
506 bytes
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
fixrtc
412 bytes
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
framebuffer
528 bytes
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
fsck
2.41 KB
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
klibc-utils
678 bytes
01/26/2016 02:08:39 AM
rwxr-xr-x
📄
klibc^i-t
743 bytes
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
kmod
424 bytes
11/12/2018 10:07:21 PM
rwxr-xr-x
📄
resize
387 bytes
09/14/2017 02:44:19 PM
rwxr-xr-x
📄
resume
1.29 KB
10/07/2019 10:53:35 AM
rwxr-xr-x
📄
ubuntu-core-rootfs
335 bytes
09/14/2017 02:44:19 PM
rwxr-xr-x
📄
udev
1.72 KB
04/02/2021 02:39:40 AM
rwxr-xr-x
📄
zz-busybox-initramfs
1.45 KB
08/31/2023 02:42:08 PM
rwxr-xr-x
📄
zz-dhclient
411 bytes
12/09/2016 05:45:11 PM
rwxr-xr-x
Editing: resume
Close
#!/bin/sh PREREQ="" prereqs() { echo "$PREREQ" } case $1 in # get pre-requisites prereqs) prereqs exit 0 ;; esac # First check if a location is set and is a valid swap partition test -r /etc/initramfs-tools/conf.d/resume \ && . /etc/initramfs-tools/conf.d/resume if [ -n "$RESUME" ] && command -v blkid >/dev/null 2>&1 \ && blkid -p -n swap $RESUME >/dev/null 2>&1; then # As mkinitramfs copies the config file nothing to do. exit 0 fi # We need to be able to read the listed swap partitions if [ ! -r /proc/swaps ]; then exit 0 fi # This is borrowed from udev's postinst chrooted() { if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i /proc/1/root 2>/dev/null)" ]; then # the devicenumber/inode pair of / is the same as that of # /sbin/init's root, so we're *not* in a chroot and hence # return false. return 1 fi return 0 } # Try to autodetect the RESUME partition, using biggest swap? RESUME=$(grep ^/dev/ /proc/swaps | sort -rk3 | head -n 1 | cut -d " " -f 1) if [ -n "$RESUME" ] && command -v blkid >/dev/null 2>&1; then UUID=$(blkid -s UUID -o value "$RESUME" || true) if [ -n "$UUID" ]; then RESUME="UUID=$UUID" fi fi # Write detected resume to intramfs conf.d/resume if not in a chroot if [ -n "${RESUME}" ] && ! chrooted; then echo "RESUME=${RESUME}" > ${DESTDIR}/conf/conf.d/resume fi