+++ /dev/null
-#!/bin/sh
-
-trap 'poweroff -f' EXIT
-set -e
-
-# create a single partition using 50% of the capacity of the image file created by test_setup() in test.sh
-sfdisk /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root << EOF
-2048,652688
-EOF
-
-udevadm settle
-
-mkfs.ext4 -q -L dracut /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root-part1
-mkdir -p /root
-mount -t ext4 /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root-part1 /root
-mkdir -p /root/run /root/testdir
-cp -a -t /root /source/*
-echo "Creating squashfs"
-mksquashfs /source /root/testdir/rootfs.img -quiet
-
-# Write the erofs compressed filesystem to the partition
-if modprobe erofs && command -v mkfs.erofs; then
- EROFS=Y
- echo "Creating erofs"
- mkfs.erofs /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root_erofs /source
-fi
-
-# Copy rootfs.img to the NTFS drive if exists
-if modprobe ntfs3 && command -v mkfs.ntfs; then
- NTFS=Y
- mkfs.ntfs -q -F -L dracut_ntfs /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root_ntfs
- mkdir -p /root_ntfs
- mount -t ntfs3 /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root_ntfs /root_ntfs
- mkdir -p /root_ntfs/run /root_ntfs/testdir
- cp /root/testdir/rootfs.img /root_ntfs/testdir/rootfs.img
-fi
-
-umount /root
-
-{
- echo "dracut-root-block-created"
- echo "EROFS=$EROFS"
- echo "NTFS=$NTFS"
-} | dd oflag=direct,dsync of=/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_marker status=none
-poweroff -f
qemu_add_drive disk_index disk_args "$TESTDIR"/marker.img marker
qemu_add_drive disk_index disk_args "$TESTDIR"/root.img root
- # shellcheck source=$TESTDIR/fs
- . "$TESTDIR"/fs
-
- # erofs drive
- qemu_add_drive disk_index disk_args "$TESTDIR"/root_erofs.img root_erofs
-
- # NTFS drive
- qemu_add_drive disk_index disk_args "$TESTDIR"/root_ntfs.img root_ntfs
-
test_marker_reset
"$testdir"/run-qemu \
"${disk_args[@]}" \
- -boot order=d \
- -append "$TEST_KERNEL_CMDLINE rd.live.overlay.overlayfs=1 root=live:/dev/disk/by-label/dracut" \
-initrd "$TESTDIR"/initramfs.testing
test_marker_check || return 1
+ # The remaining subtests are not yet passing on arm, bail out
+ if [[ ${DRACUT_ARCH:-$(uname -m)} == arm* || ${DRACUT_ARCH:-$(uname -m)} == aarch64 ]]; then
+ return 0
+ fi
+
+ # erofs drive
+ qemu_add_drive disk_index disk_args "$TESTDIR"/root_erofs.img root_erofs
+
# Run the erofs test only if mkfs.erofs is available
- if [[ "$EROFS" ]]; then
+ if command -v mkfs.erofs; then
test_marker_reset
"$testdir"/run-qemu \
"${disk_args[@]}" \
- -boot order=d \
- -append "$TEST_KERNEL_CMDLINE rd.live.overlay.overlayfs=1 root=live:/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root_erofs" \
+ -append "root=live:/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_root_erofs" \
-initrd "$TESTDIR"/initramfs.testing
test_marker_check || return 1
test_marker_reset
"$testdir"/run-qemu \
"${disk_args[@]}" \
- -boot order=d \
- -append "$TEST_KERNEL_CMDLINE rd.live.image rd.live.overlay.overlayfs=1 root=LABEL=dracut" \
+ -append "rd.live.image" \
-initrd "$TESTDIR"/initramfs.testing
test_marker_check || return 1
"$testdir"/run-qemu \
"${disk_args[@]}" \
-boot order=d \
- -append "$TEST_KERNEL_CMDLINE rd.live.image rd.live.overlay.overlayfs=1 rd.live.dir=testdir root=LABEL=dracut" \
+ -append "rd.live.image rd.live.dir=testdir" \
-initrd "$TESTDIR"/initramfs.testing
test_marker_check || return 1
- # Run the NTFS test only if mkfs.ntfs is available
- if [[ "$NTFS" ]]; then
- dd if=/dev/zero of="$TESTDIR"/marker.img bs=1MiB count=1 status=none
- "$testdir"/run-qemu \
- "${disk_args[@]}" \
- -boot order=d \
- -append "$TEST_KERNEL_CMDLINE rd.live.image rd.live.overlay.overlayfs=1 rd.live.dir=testdir root=LABEL=dracut_ntfs" \
- -initrd "$TESTDIR"/initramfs.testing
-
- test_marker_check || return 1
- fi
-
test_marker_reset
rootPartitions=$(sfdisk -d "$TESTDIR"/root.img | grep -c 'root\.img[0-9]')
[ "$rootPartitions" -eq 1 ] || return 1
"$testdir"/run-qemu \
"${disk_args[@]}" \
-boot order=d \
- -append "init=/sbin/init-persist rd.live.image rd.live.overlay.overlayfs=1 rd.live.overlay=LABEL=persist rd.live.dir=testdir root=LABEL=dracut console=ttyS0,115200n81 quiet rd.info rd.shell=0 panic=1 oops=panic softlockup_panic=1 $DEBUGFAIL" \
+ -append "init=/sbin/init-persist rd.live.image rd.live.overlay=LABEL=persist rd.live.dir=testdir" \
-initrd "$TESTDIR"/initramfs.testing
rootPartitions=$(sfdisk -d "$TESTDIR"/root.img | grep -c 'root\.img[0-9]')
set +o pipefail
# Verify that the string "dracut-autooverlay-success" occurs in the second partition in the image file.
- dd if="$TESTDIR"/root.img bs=1MiB skip=80 status=none \
+ dd if="$TESTDIR"/root.img bs=1MiB status=none \
| grep -U --binary-files=binary -F -m 1 -q dracut-autooverlay-success
) || return 1
}
# test to make sure /proc /sys and /dev is not needed inside the generated initrd
rm -rf "$TESTDIR"/dracut.*/initramfs/proc "$TESTDIR"/dracut.*/initramfs/sys "$TESTDIR"/dracut.*/initramfs/dev
- # second, install the files needed to make the root filesystem
- # create an initramfs that will create the target root filesystem.
- # We do it this way so that we do not risk trashing the host mdraid
- # devices, volume groups, encrypted partitions, etc.
- "$DRACUT" -N -i "$TESTDIR"/overlay / \
- --add-confdir test-makeroot \
- --install "sfdisk mkfs.ntfs mksquashfs mkfs.erofs" \
- --drivers "ntfs3 erofs" \
- --include ./create-root.sh /lib/dracut/hooks/initqueue/01-create-root.sh \
- --force "$TESTDIR"/initramfs.makeroot "$KVERSION" || return 1
+ # seep up test run
+ rm -rf "$TESTDIR"/overlay/source/usr/lib/firmware
+
+ mkdir -p "$TESTDIR"/testdir
+ mksquashfs "$TESTDIR"/overlay/source/ "$TESTDIR"/testdir/rootfs.img -quiet
# Create the blank file to use as a root filesystem
declare -a disk_args=()
declare -i disk_index=0
- qemu_add_drive disk_index disk_args "$TESTDIR"/marker.img marker 1
qemu_add_drive disk_index disk_args "$TESTDIR"/root.img root 1
- # erofs drive
- qemu_add_drive disk_index disk_args "$TESTDIR"/root_erofs.img root_erofs 1
+ sfdisk "$TESTDIR"/root.img << EOF
+2048,652688
+EOF
- # NTFS drive
- qemu_add_drive disk_index disk_args "$TESTDIR"/root_ntfs.img root_ntfs 1
+ sync
+ dd if=/dev/zero of="$TESTDIR"/ext4.img bs=512 count=652688 status=none && sync
+ mkfs.ext4 -q -L dracut -d "$TESTDIR"/overlay/source/ "$TESTDIR"/ext4.img && sync
+ dd if="$TESTDIR"/ext4.img of="$TESTDIR"/root.img bs=512 seek=2048 conv=noerror,sync,notrunc
- # Invoke KVM and/or QEMU to actually create the target filesystem.
- "$testdir"/run-qemu \
- "${disk_args[@]}" \
- -append "root=/dev/dracut/root quiet console=ttyS0,115200n81" \
- -initrd "$TESTDIR"/initramfs.makeroot || return 1
+ # erofs drive
+ qemu_add_drive disk_index disk_args "$TESTDIR"/root_erofs.img root_erofs 1
- if ! test_marker_check dracut-root-block-created; then
- echo "Could not create root filesystem"
- return 1
+ # Write the erofs compressed filesystem to the partition
+ if command -v mkfs.erofs; then
+ mkfs.erofs "$TESTDIR"/root_erofs.img "$TESTDIR"/overlay/source/
fi
- # grab the list of supported filesystem kernel modules
- grep -F -a -m 1 EROFS "$TESTDIR"/marker.img >> "$TESTDIR"/fs
- grep -F -a -m 1 NTFS "$TESTDIR"/marker.img >> "$TESTDIR"/fs
-
- # mount NTFS with ntfs3 driver inside the generated initramfs
- cat > /tmp/ntfs3.rules << 'EOF'
-SUBSYSTEM=="block", ENV{ID_FS_TYPE}=="ntfs", ENV{ID_FS_TYPE}="ntfs3"
-EOF
-
test_dracut \
--no-hostonly \
--modules "dmsquash-live-autooverlay" \
- --drivers "ntfs3" \
- --install "mkfs.ext4" \
- --include /tmp/ntfs3.rules /lib/udev/rules.d/ntfs3.rules \
+ --kernel-cmdline "$TEST_KERNEL_CMDLINE rd.live.overlay.overlayfs=1 root=live:/dev/disk/by-label/dracut" \
"$TESTDIR"/initramfs.testing
}