| .. | .. |
|---|
| 2 | 2 | /* |
|---|
| 3 | 3 | * Sample code to test firmware-management protocol |
|---|
| 4 | 4 | * |
|---|
| 5 | | - * This file is provided under a dual BSD/GPLv2 license. When using or |
|---|
| 6 | | - * redistributing this file, you may do so under either license. |
|---|
| 7 | | - * |
|---|
| 8 | | - * GPL LICENSE SUMMARY |
|---|
| 9 | | - * |
|---|
| 10 | 5 | * Copyright(c) 2016 Google Inc. All rights reserved. |
|---|
| 11 | 6 | * Copyright(c) 2016 Linaro Ltd. All rights reserved. |
|---|
| 12 | | - * |
|---|
| 13 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 14 | | - * it under the terms of version 2 of the GNU General Public License as |
|---|
| 15 | | - * published by the Free Software Foundation. |
|---|
| 16 | | - * |
|---|
| 17 | | - * This program is distributed in the hope that it will be useful, but |
|---|
| 18 | | - * WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 19 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 20 | | - * General Public License version 2 for more details. |
|---|
| 21 | | - * |
|---|
| 22 | | - * BSD LICENSE |
|---|
| 23 | | - * |
|---|
| 24 | | - * Copyright(c) 2016 Google Inc. All rights reserved. |
|---|
| 25 | | - * Copyright(c) 2016 Linaro Ltd. All rights reserved. |
|---|
| 26 | | - * |
|---|
| 27 | | - * Redistribution and use in source and binary forms, with or without |
|---|
| 28 | | - * modification, are permitted provided that the following conditions |
|---|
| 29 | | - * are met: |
|---|
| 30 | | - * |
|---|
| 31 | | - * * Redistributions of source code must retain the above copyright |
|---|
| 32 | | - * notice, this list of conditions and the following disclaimer. |
|---|
| 33 | | - * * Redistributions in binary form must reproduce the above copyright |
|---|
| 34 | | - * notice, this list of conditions and the following disclaimer in |
|---|
| 35 | | - * the documentation and/or other materials provided with the |
|---|
| 36 | | - * distribution. |
|---|
| 37 | | - * * Neither the name of Google Inc. or Linaro Ltd. nor the names of |
|---|
| 38 | | - * its contributors may be used to endorse or promote products |
|---|
| 39 | | - * derived from this software without specific prior written |
|---|
| 40 | | - * permission. |
|---|
| 41 | | - * |
|---|
| 42 | | - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 43 | | - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 44 | | - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 45 | | - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC. OR |
|---|
| 46 | | - * LINARO LTD. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|---|
| 47 | | - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|---|
| 48 | | - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|---|
| 49 | | - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
|---|
| 50 | | - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 51 | | - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 52 | | - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 53 | 7 | */ |
|---|
| 54 | 8 | |
|---|
| 55 | 9 | #include <stdio.h> |
|---|