[baseimage]: add mkfs.ext3 and fsck.ext3 in initrd to support ext3 partition (#1306)

This commit is contained in:
lguohan 2018-01-16 10:50:43 -08:00 committed by GitHub
parent 292de7dcda
commit b8a0a10e8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ copy_exec /sbin/mke2fs
copy_exec /sbin/sfdisk copy_exec /sbin/sfdisk
copy_exec /sbin/fdisk copy_exec /sbin/fdisk
fstypes="ext4" fstypes="ext4 ext3"
for type in $fstypes; do for type in $fstypes; do
prog="/sbin/mkfs.${type}" prog="/sbin/mkfs.${type}"