1 /*****************************************************************************
2 * FILE PURPOSE: Define the Ethernet boot wrapper
3 *****************************************************************************
4 * FILE NAME: ethboot.h
5 *
6 * DESCRIPTION: This file defines the ethernet wrapper used by IBL modules
7 *
8 * @file ethboot.h
9 *
10 * @brief
11 * The ethernet boot wrapper API is defined
12 *
13 *****************************************************************************/
15 #ifndef ETHBOOT_H
16 #define ETHBOOT_H
18 #include "types.h"
20 /**
21 * @brief
22 * Attempt an enternet boot
23 *
24 * @details
25 * The IBL will attempt to boot over the ethernet device
26 */
27 void iblEthBoot (int32 eIdx);
31 #endif /* ETHBOOT_H */