On Thu, 7 Dec 2023 at 21:57, ~inesvarhol <[email protected]> wrote: > > From: Inès Varhol <[email protected]> > > This commit adds a new B-L475E-IOT01A board using the STM32L475VG SoC. > The implementation is derived from the Netduino Plus 2 machine. > There are no peripherals implemented yet, only memory regions. > > Reviewed-by: Philippe Mathieu-Daudé <[email protected]> > > Signed-off-by: Arnaud Minier <[email protected]> > Signed-off-by: Inès Varhol <[email protected]>
Hi; thanks for this patch. > +++ b/hw/arm/b-l475e-iot01a.c > @@ -0,0 +1,79 @@ > +/* > + * B-L475E-IOT01A Discovery Kit machine > + * (B-L475E-IOT01A IoT Node) > + * > + * SPDX-License-Identifier: GPL-2.0-or-later This line says "this is under the GPL"... > + * > + * Copyright (c) 2023 Arnaud Minier <[email protected]> > + * Copyright (c) 2023 Ines Varhol <[email protected]> > + * > + * Permission is hereby granted, free of charge, to any person obtaining a > copy > + * of this software and associated documentation files (the "Software"), to > deal > + * in the Software without restriction, including without limitation the > rights > + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell > + * copies of the Software, and to permit persons to whom the Software is > + * furnished to do so, subject to the following conditions: > + * > + * The above copyright notice and this permission notice shall be included in > + * all copies or substantial portions of the Software. > + * > + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR > + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, > + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL > + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER > + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING > FROM, > + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN > + * THE SOFTWARE. ...but this text is not the GPL, it is the MIT license. > + * > + * Heavily inspired by the netduinoplus2 by Alistair Francis. > + * The reference used is the STMicroElectronics UM2153 User manual > + * Discovery kit for IoT node, multi-channel communication with STM32L4. > + * https://www.st.com/en/evaluation-tools/b-l475e-iot01a.html#documentation > + */ > + Can you clarify which license you want to use, please? We can't take code that's confused about what license it's under. thanks -- PMM
