Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/ofppc/stand/ofwboot Support load from FAT.



details:   https://anonhg.NetBSD.org/src/rev/ccc5b8ea9d07
branches:  trunk
changeset: 755761:ccc5b8ea9d07
user:      kiyohara <kiyohara%NetBSD.org@localhost>
date:      Sat Jun 19 08:48:33 2010 +0000

description:
Support load from FAT.

diffstat:

 sys/arch/ofppc/stand/ofwboot/rdb.c |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 1921257a4c37 -r ccc5b8ea9d07 sys/arch/ofppc/stand/ofwboot/rdb.c
--- a/sys/arch/ofppc/stand/ofwboot/rdb.c        Sat Jun 19 08:45:25 2010 +0000
+++ b/sys/arch/ofppc/stand/ofwboot/rdb.c        Sat Jun 19 08:48:33 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rdb.c,v 1.1 2009/09/11 12:00:12 phx Exp $      */
+/*     $NetBSD: rdb.c,v 1.2 2010/06/19 08:48:33 kiyohara Exp $ */
 
 /*-
  * Copyright (c) 2009 Frank Wille.
@@ -99,6 +99,10 @@
                adt.archtype = ADT_RAID;
                adt.fstype = FS_RAID;
                return adt;
+       case DOST_MSD:
+               adt.archtype = ADT_MSD;
+               adt.fstype = FS_MSDOS;
+               return adt;
        default:
                adt.archtype = ADT_UNKNOWN;
                adt.fstype = FS_UNUSED;



Home | Main Index | Thread Index | Old Index