1 if test -x $DEBUGFS_EXE; then 2 3 SKIP_GUNZIP="true" 4 5 touch $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 8 set_current_time 200704102100 9 set_super_value lastcheck 0 10 set_super_value hash_seed null 11 set_super_value mkfs_time 0 12 set_bg 1 flags 0x7 13 set_bg 1 checksum calc 14 q 15 EOF 16 17 E2FSCK_TIME=200704102100 18 export E2FSCK_TIME 19 20 . $cmd_dir/run_e2fsck 21 22 unset E2FSCK_TIME 23 24 else #if test -x $DEBUGFS_EXE; then 25 echo "$test_name: $test_description: skipped" 26 fi 27