view sources/toys/make-hdb.sh @ 1343:214b23b707b0

Factor out make-hdb.sh from dev-environment.sh.
author Rob Landley <rob@landley.net>
date Sun, 03 Apr 2011 15:05:11 -0500
parents
children 5e76b1ac1e6c
line wrap: on
line source

make_hdb()
{
  # Some distros don't put /sbin:/usr/sbin in the $PATH for non-root users.
  if [ -z "$(which  mke2fs)" ] || [ -z "$(which tune2fs)" ]
  then
    export PATH=/sbin:/usr/bin:$PATH
  fi

  dd if=/dev/zero of="$HDB" bs=1024 seek=$[$HDBMEGS*1024-1] count=1 &&
  mke2fs -q -b 1024 -F "$HDB" -i 4096 &&
  tune2fs -j -c 0 -i 0 "$HDB"

  [ $? -ne 0 ] && exit 1
}