|
|
|
#!/bin/bash
|
|
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
|
|
|
|
|
|
check() {
|
|
|
|
rootopts="defaults"
|
|
|
|
while read dev mp fs opts dump fsck; do
|
|
|
|
# skip comments
|
|
|
|
[ "${dev%%#*}" != "$dev" ] && continue
|
|
|
|
|
|
|
|
if [ "$mp" = "/" ]; then
|
|
|
|
# sanity - determine/fix fstype
|
|
|
|
rootfs=$(find_mp_fstype /)
|
|
|
|
rootfs=${rootfs:-$fs}
|
|
|
|
rootopts=$opts
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done < /etc/fstab
|
|
|
|
|
|
|
|
[ "$rootfs" = "reiserfs" ] && journaldev=$(fs_get_option $rootopts "jdev")
|
|
|
|
[ "$rootfs" = "xfs" ] && journaldev=$(fs_get_option $rootopts "logdev")
|
|
|
|
if [ -n "$journaldev" ]; then
|
|
|
|
echo "root.journaldev=$journaldev" >> "${initdir}/etc/cmdline.d/95root-jurnaldev.conf"
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
implement fs-lib, squash a few bugs that were part of det_fs/wrap_fsck
To not pollute dracut-lib.sh, all the fsck related functions were moved
to fs-lib.sh. The functions available are as follows:
- fsck_single
this will detect/verify filesystem, check if it has necessary tools and
check the filesystem respecting additional flags (if any), using
specific "driver" (or falling back to generic one). Currently
available: fsck_drv_{com,xfs,std}. 'com' is used for tools following
typical subset of options/return codes (e.g. ext, jfs), 'std' is used
for "unknown" fs and doesn't assume it can be run non-interactively.
Please see comments around the code for more info.
- fsck_batch
this will check provided list of the devices;
Both of the above functions will fake empty fstab, to make generic fsck
not complain too much (excact devices are always provided on the command
line).
"Known" filesystems currently: ext234, reiser, jfs, xfs
- det_fs
Small bug fixed - as this function is meant to be called in $(), it may
not be verbose.
Current behaviour is:
- if detection is successful, use its result
- if detection is not successful, and filesystem is provided, return
the provided one; otherwise use auto
14 years ago
|
|
|
depends() {
|
|
|
|
echo fs-lib
|
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
|
|
|
dracut_install umount
|
|
|
|
dracut_install tr
|
|
|
|
if ! dracut_module_included "systemd"; then
|
|
|
|
inst_hook cmdline 95 "$moddir/parse-block.sh"
|
|
|
|
inst_hook pre-udev 30 "$moddir/block-genrules.sh"
|
|
|
|
inst_hook mount 99 "$moddir/mount-root.sh"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|