Adapt MD parts to changes in get_fs_part_type (pass partition type).

This commit is contained in:
martin 2019-12-14 12:00:40 +00:00
parent 5449798710
commit 015df285a2
4 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.c,v 1.9 2019/08/14 12:55:35 martin Exp $ */
/* $NetBSD: md.c,v 1.10 2019/12/14 12:00:40 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -271,7 +271,7 @@ md_parts_use_wholedisk(struct disk_partitions *parts)
};
boot_part.nat_type = parts->pscheme->get_fs_part_type(
boot_part.fs_type, boot_part.fs_sub_type);
PT_root, boot_part.fs_type, boot_part.fs_sub_type);
return parts_use_wholedisk(parts, 1, &boot_part);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.c,v 1.9 2019/08/14 12:55:36 martin Exp $ */
/* $NetBSD: md.c,v 1.10 2019/12/14 12:00:40 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -286,7 +286,7 @@ md_parts_use_wholedisk(struct disk_partitions *parts)
};
boot_part.nat_type = parts->pscheme->get_fs_part_type(
boot_part.fs_type, boot_part.fs_sub_type);
PT_root, boot_part.fs_type, boot_part.fs_sub_type);
return parts_use_wholedisk(parts, 1, &boot_part);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.c,v 1.4 2019/07/13 17:13:37 martin Exp $ */
/* $NetBSD: md.c,v 1.5 2019/12/14 12:00:40 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -259,7 +259,7 @@ md_parts_use_wholedisk(struct disk_partitions *parts)
};
boot_part.nat_type = parts->pscheme->get_fs_part_type(
boot_part.fs_type, boot_part.fs_sub_type);
PT_root, boot_part.fs_type, boot_part.fs_sub_type);
return parts_use_wholedisk(parts, 1, &boot_part);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.c,v 1.9 2019/08/14 12:55:37 martin Exp $ */
/* $NetBSD: md.c,v 1.10 2019/12/14 12:00:40 martin Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -282,7 +282,7 @@ md_parts_use_wholedisk(struct disk_partitions *parts)
};
boot_part.nat_type = parts->pscheme->get_fs_part_type(
boot_part.fs_type, boot_part.fs_sub_type);
PT_root, boot_part.fs_type, boot_part.fs_sub_type);
return parts_use_wholedisk(parts, 1, &boot_part);
}