1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*====================================================================*
- Copyright (c) 2013,2021 Qualcomm Technologies, Inc.
- All Rights Reserved.
- Confidential and Proprietary - Qualcomm Technologies, Inc.
- ******************************************************************
- 2013 Qualcomm Atheros, Inc.
- *--------------------------------------------------------------------*/
- /*====================================================================*
- *
- * signed BootDevice2 (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 BootDevice1 but calls functions
- * that expect the newer image file format;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef BOOTDEVICE2_SOURCE
- #define BOOTDEVICE2_SOURCE
- #include <memory.h>
- #include "../plc/plc.h"
- signed BootDevice2 (struct plc * plc)
- {
- char string [PLC_VERSION_STRING];
- if (BootParameters2 (plc))
- {
- return (-1);
- }
- if (BootFirmware2 (plc))
- {
- return (-1);
- }
- if (WaitForStart (plc, string, sizeof (string)))
- {
- return (-1);
- }
- Confirm (plc, "%s is running", string);
- return (0);
- }
- signed BootDevice2_no_wait(struct plc* plc)
- {
- if (BootParameters2(plc))
- {
- return (-1);
- }
- if (BootFirmware2(plc))
- {
- return (-1);
- }
- return (0);
- }
- #endif
|