1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * signed BootDevice1 (struct plc * plc);
- *
- * plc.h
- *
- * boot a powerline device by writing parameters and firmware into
- * volatile memory and starting execution; volatile memory must be
- * initialized and configured before calling this function;
- *
- * this function is identical to BootDevice2 but calls functions
- * that expect the older image file format;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef BOOTDEVICE1_SOURCE
- #define BOOTDEVICE1_SOURCE
- #include <memory.h>
- #include "../plc/plc.h"
- signed BootDevice1 (struct plc * plc)
- {
- char string [PLC_VERSION_STRING];
- if (BootParameters1 (plc))
- {
- return (-1);
- }
- if (BootFirmware1 (plc))
- {
- return (-1);
- }
- if (WaitForStart (plc, string, sizeof (string)))
- {
- return (-1);
- }
- Confirm (plc, "%s is running", string);
- return (0);
- }
- #endif
|