799f22d4c7
* Run fsck filesystem check support prior mounting filesystem If the filesystem become non clean ("dirty"), SONiC does not run fsck to repair and mark it as clean again. This patch adds the functionality to run fsck on each boot, prior to the filesystem being mounted. This allows the filesystem to be repaired if needed. Note that if the filesystem is maked as clean, fsck does nothing and simply return so this is perfectly fine to call fsck every time prior to mount the filesystem. How to verify this patch (using bash): Using an image without this patch: Make the filesystem "dirty" (not clean) [we are making the assumption that filesystem is stored in /dev/sda3 - Please adjust depending of the platform] [do this only on a test platform!] dd if=/dev/sda3 of=superblock bs=1 count=2048 printf "$(printf '\\x%02X' 2)" | dd of="superblock" bs=1 seek=1082 count=1 conv=notrunc &> /dev/null dd of=/dev/sda3 if=superblock bs=1 count=2048 Verify that filesystem is not clean tune2fs -l /dev/sda3 | grep "Filesystem state:" reboot and verify that the filesystem is still not clean Redo the same test with an image with this patch, and verify that at next reboot the filesystem is repaired and becomes clean. fsck log is stored on syslog, using the string FSCK as markup.
35 lines
614 B
Bash
35 lines
614 B
Bash
#!/bin/sh
|
|
|
|
case $1 in
|
|
prereqs)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# Extract kernel parameters
|
|
root_val=""
|
|
set -- $(cat /proc/cmdline)
|
|
for x in "$@"; do
|
|
case "$x" in
|
|
root=*)
|
|
root_val="${x#root=}"
|
|
;;
|
|
esac
|
|
done
|
|
|
|
# Check the filesystem we are using
|
|
if [ ! -z $root_val ]; then
|
|
fstype=$(blkid -o value -s TYPE $root_val)
|
|
case "$fstype" in
|
|
ext4)
|
|
cmd="fsck.ext4 -v -p"
|
|
;;
|
|
ext3)
|
|
cmd="fsck.ext3 -v -p"
|
|
;;
|
|
esac
|
|
if [ ! -z "$cmd" ]; then
|
|
$cmd $root_val 2>&1 | gzip -c > /tmp/fsck.log.gz
|
|
fi
|
|
fi
|