forked from lix-project/lix
12 lines
165 B
Bash
Executable file
12 lines
165 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. ./settings
|
|
|
|
rm $image
|
|
|
|
dd if=/dev/zero of=$image bs=1M count=1 seek=256
|
|
|
|
/sbin/mke2fs -F -j $image
|
|
/sbin/tune2fs -c 0 $image
|
|
/sbin/tune2fs -i 0 $image
|