From 089d36aae047ac4fb901057d3a5b0ec8539809df Mon Sep 17 00:00:00 2001 From: tsutsui Date: Wed, 10 Jun 2020 16:56:22 +0000 Subject: [PATCH] MBR type for Ext2 should be MBR_PTYPE_LNXEXT2, not MBR_PTYPE_FAT12. --- usr.sbin/sysinst/arch/cobalt/md.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/sysinst/arch/cobalt/md.c b/usr.sbin/sysinst/arch/cobalt/md.c index c363c04a7262..39b492ae5de3 100644 --- a/usr.sbin/sysinst/arch/cobalt/md.c +++ b/usr.sbin/sysinst/arch/cobalt/md.c @@ -1,4 +1,4 @@ -/* $NetBSD: md.c,v 1.12 2020/01/27 21:21:22 martin Exp $ */ +/* $NetBSD: md.c,v 1.13 2020/06/10 16:56:22 tsutsui Exp $ */ /* * Copyright 1997 Piermont Information Systems Inc. @@ -281,7 +281,7 @@ md_parts_use_wholedisk(struct disk_partitions *parts) struct disk_part_info boot_part = { .size = PART_BOOT / 512, .fs_type = PART_BOOT_TYPE, - .fs_sub_type = MBR_PTYPE_FAT12, + .fs_sub_type = MBR_PTYPE_LNXEXT2, .last_mounted = PART_BOOT_MOUNT, };