1if test -x $DEBUGFS_EXE; then 2 3SKIP_GUNZIP="true" 4 5touch $TMPFILE 6$MKE2FS -N 32 -F -o Linux -O uninit_bg -b 1024 $TMPFILE 10000 > /dev/null 2>&1 7$DEBUGFS -w $TMPFILE << EOF > /dev/null 2>&1 8set_current_time 200704102100 9set_super_value lastcheck 0 10set_super_value hash_seed null 11set_super_value mkfs_time 0 12set_bg 1 flags 0x7 13set_bg 1 checksum calc 14q 15EOF 16 17E2FSCK_TIME=200704102100 18export E2FSCK_TIME 19 20. $cmd_dir/run_e2fsck 21 22unset E2FSCK_TIME 23 24else #if test -x $DEBUGFS_EXE; then 25 echo "$test_name: $test_description: skipped" 26fi 27