Browse Source

Added the correct options for mkfs.jffs.

master
freesource 23 years ago
parent
commit
d87f6a9cdd
  1. 4
      expect_uml

4
expect_uml

@ -145,10 +145,10 @@ elsif ( $filesystem =~ /^mkfs\.jffs/ ) {
$uml->command("umount /mnt2"); $uml->command("umount /mnt2");
$uml->command("mount -t hostfs none -o $jffs_dir /mnt2"); $uml->command("mount -t hostfs none -o $jffs_dir /mnt2");
if ( $filesystem =~ /^mkfs\.jffs\s*$/ ) { if ( $filesystem =~ /^mkfs\.jffs\s*$/ ) {
$uml->command("mkfs.jffs2 -r /mnt1 -o /mnt2/$jffs2_name -e 0x20000 -p"); $uml->command("mkfs.jffs -d /mnt1 -o /mnt2/$jffs2_name -e 0x20000");
} }
else { else {
$uml->command("$filesystem -r /mnt1 -o /mnt2/$jffs2_name"); $uml->command("$filesystem -d /mnt1 -o /mnt2/$jffs2_name");
} }
} }

Loading…
Cancel
Save