]>
git.saurik.com Git - apple/xnu.git/blob - iokit/bsddev/DINetBootHook.h
5 * Created by Byron Han on Sat Apr 13 2002.
6 * Copyright (c) 2002 Apple Computer, Inc. All rights reserved.
10 * $Log: DINetBootHook.h,v $
11 * Revision 1.4 2005/07/29 21:49:57 lindak
12 * Merge of branch "chardonnay" to pick up all chardonnay changes in Leopard
15 * Revision 1.3.1582.1 2005/06/24 01:47:25 lindak
16 * Bringing over all of the Karma changes into chardonnay.
18 * Revision 1.1.1.1 2005/02/24 21:48:06 akosut
19 * Import xnu-764 from Tiger8A395
21 * Revision 1.3 2002/05/22 18:50:49 aramesh
24 * Changes from Josh(networking), Rick(IOKit), Jim & David(osfmk), Umesh, Dan & Ramesh(BSD)
25 * Submitted by: Ramesh
26 * Reviewed by: Vincent
28 * Revision 1.2.12.1 2002/05/21 23:08:14 aramesh
31 * Submitted by: Josh, Umesh, Jim, Rick and Ramesh
32 * Reviewed by: Vincent
34 * Revision 1.2 2002/05/03 18:08:39 lindak
35 * Merged PR-2909558 into Jaguar (siegmund POST WWDC: add support for NetBoot
36 * over IOHDIXController)
38 * Revision 1.1.2.1 2002/04/24 22:29:12 dieter
40 * - added IOHDIXController netboot stubs
42 * Revision 1.2 2002/04/14 22:56:47 han
43 * fixed up comment re dev_t
45 * Revision 1.1 2002/04/13 19:22:28 han
46 * added stub file DINetBookHook.c
51 #ifndef __DINETBOOKHOOK_H__
52 #define __DINETBOOKHOOK_H__
54 #include <sys/appleapiopts.h>
56 #ifdef __APPLE_API_PRIVATE
62 #include <sys/types.h>
66 Function: mount the disk image returning the dev node
67 Parameters: path -> path/url to disk image
68 devname <- dev node used to set the rootdevice global variable
69 dev_p <- combination of major/minor node
72 int di_root_image(const char *path
, char devname
[], dev_t
*dev_p
);
78 #endif /* __APPLE_API_PRIVATE */
80 #endif __DINETBOOKHOOK_H__