summaryrefslogtreecommitdiffhomepage
path: root/Private/NewBoot/NetBoot/EfiModule.cxx
blob: 419a2be4c1520141a945fab9ab7d4c43721f9993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 *	========================================================
 *
 *	NetBoot
 * 	Copyright Mahrouss Logic, all rights reserved.
 *
 * 	========================================================
 */

#include <FirmwareKit/EFI.hxx>

EXTERN_C Int32 EfiMain(EfiHandlePtr handle, EfiSystemTable* SystemTable) 
{
  InitEFI(ST);

  /// - Find a network drive called ".\\HCoreWorkgroup"
  /// - Download our image
  /// - Boot from it.

  return kEfiOk;
}