BootDevice1.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed BootDevice1 (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * boot a powerline device by writing parameters and firmware into
  15. * volatile memory and starting execution; volatile memory must be
  16. * initialized and configured before calling this function;
  17. *
  18. * this function is identical to BootDevice2 but calls functions
  19. * that expect the older image file format;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef BOOTDEVICE1_SOURCE
  26. #define BOOTDEVICE1_SOURCE
  27. #include <memory.h>
  28. #include "../plc/plc.h"
  29. signed BootDevice1 (struct plc * plc)
  30. {
  31. char string [PLC_VERSION_STRING];
  32. if (BootParameters1 (plc))
  33. {
  34. return (-1);
  35. }
  36. if (BootFirmware1 (plc))
  37. {
  38. return (-1);
  39. }
  40. if (WaitForStart (plc, string, sizeof (string)))
  41. {
  42. return (-1);
  43. }
  44. Confirm (plc, "%s is running", string);
  45. return (0);
  46. }
  47. #endif