1*391763d7SAndrew Rybchenko /*- 2*391763d7SAndrew Rybchenko * SPDX-License-Identifier: BSD-2-Clause-FreeBSD 3*391763d7SAndrew Rybchenko * 4*391763d7SAndrew Rybchenko * Copyright (c) 2017-2018 Solarflare Communications Inc. 5*391763d7SAndrew Rybchenko * All rights reserved. 6*391763d7SAndrew Rybchenko * 7*391763d7SAndrew Rybchenko * Redistribution and use in source and binary forms, with or without 8*391763d7SAndrew Rybchenko * modification, are permitted provided that the following conditions are met: 9*391763d7SAndrew Rybchenko * 10*391763d7SAndrew Rybchenko * 1. Redistributions of source code must retain the above copyright notice, 11*391763d7SAndrew Rybchenko * this list of conditions and the following disclaimer. 12*391763d7SAndrew Rybchenko * 2. Redistributions in binary form must reproduce the above copyright notice, 13*391763d7SAndrew Rybchenko * this list of conditions and the following disclaimer in the documentation 14*391763d7SAndrew Rybchenko * and/or other materials provided with the distribution. 15*391763d7SAndrew Rybchenko * 16*391763d7SAndrew Rybchenko * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 17*391763d7SAndrew Rybchenko * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 18*391763d7SAndrew Rybchenko * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19*391763d7SAndrew Rybchenko * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 20*391763d7SAndrew Rybchenko * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 21*391763d7SAndrew Rybchenko * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 22*391763d7SAndrew Rybchenko * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 23*391763d7SAndrew Rybchenko * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 24*391763d7SAndrew Rybchenko * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 25*391763d7SAndrew Rybchenko * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 26*391763d7SAndrew Rybchenko * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27*391763d7SAndrew Rybchenko * 28*391763d7SAndrew Rybchenko * The views and conclusions contained in the software and documentation are 29*391763d7SAndrew Rybchenko * those of the authors and should not be interpreted as representing official 30*391763d7SAndrew Rybchenko * policies, either expressed or implied, of the FreeBSD Project. 31*391763d7SAndrew Rybchenko */ 32*391763d7SAndrew Rybchenko 33*391763d7SAndrew Rybchenko #include <sys/cdefs.h> 34*391763d7SAndrew Rybchenko __FBSDID("$FreeBSD$"); 35*391763d7SAndrew Rybchenko 36*391763d7SAndrew Rybchenko #include "efx.h" 37*391763d7SAndrew Rybchenko #include "efx_impl.h" 38*391763d7SAndrew Rybchenko 39*391763d7SAndrew Rybchenko #if EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2 40*391763d7SAndrew Rybchenko 41*391763d7SAndrew Rybchenko #if EFSYS_OPT_IMAGE_LAYOUT 42*391763d7SAndrew Rybchenko 43*391763d7SAndrew Rybchenko #include "ef10_signed_image_layout.h" 44*391763d7SAndrew Rybchenko 45*391763d7SAndrew Rybchenko 46*391763d7SAndrew Rybchenko 47*391763d7SAndrew Rybchenko #endif /* EFSYS_OPT_IMAGE_LAYOUT */ 48*391763d7SAndrew Rybchenko 49*391763d7SAndrew Rybchenko #endif /* EFSYS_OPT_MEDFORD || EFSYS_OPT_MEDFORD2 */ 50