Skip to content

Commit

Permalink
add copyright header to ld file and keep fixing CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
imahjoub committed Jul 31, 2024
1 parent bbbea3e commit b651587
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 40 deletions.
2 changes: 1 addition & 1 deletion Build/Make/make_000.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ include $(PATH_SRC)/Target/stm32f446re/Make/make_stm32f446re.gmk
endif

ifeq ($(TYP_MCU),stm32l432kc)
include $(PATH_SRC)/Target/Stm32l432kc/Make/make_Stm32l432kc.gmk
include $(PATH_SRC)/Target/stm32l432kc/Make/make_stm32l432kc.gmk
endif

4 changes: 2 additions & 2 deletions Build/VS/UniversalBareMetal.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
<ClCompile Include="..\..\Src\Target\stm32l432kc\Startup\SysStartup.c" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Src\target\stm32f446re\make\make_stm32f446re.gmk" />
<None Include="..\..\Src\target\stm32f446re\make\stm32f446re.ld" />
<None Include="..\..\Src\Target\stm32f446re\Make\make_stm32f446re.gmk" />
<None Include="..\..\Src\Target\stm32f446re\Make\stm32f446re.ld" />
<None Include="..\..\Src\Target\stm32l432kc\Make\make_stm32l432kc.gmk" />
<None Include="..\..\Src\Target\stm32l432kc\Make\stm32l432kc.ld" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions Build/VS/UniversalBareMetal.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -120,18 +120,18 @@
</ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\Src\target\stm32f446re\make\make_stm32f446re.gmk">
<Filter>Source Files\Src\Target\stm32f446re\Make</Filter>
</None>
<None Include="..\..\Src\target\stm32f446re\make\stm32f446re.ld">
<Filter>Source Files\Src\Target\stm32f446re\Make</Filter>
</None>
<None Include="..\..\Src\Target\stm32l432kc\Make\make_stm32l432kc.gmk">
<Filter>Source Files\Src\Target\stm32l432kc\Make</Filter>
</None>
<None Include="..\..\Src\Target\stm32l432kc\Make\stm32l432kc.ld">
<Filter>Source Files\Src\Target\stm32l432kc\Make</Filter>
</None>
<None Include="..\..\Src\Target\stm32f446re\Make\make_stm32f446re.gmk">
<Filter>Source Files\Src\Target\stm32f446re\Make</Filter>
</None>
<None Include="..\..\Src\Target\stm32f446re\Make\stm32f446re.ld">
<Filter>Source Files\Src\Target\stm32f446re\Make</Filter>
</None>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\Src\Target\Host\Mcal\mcal_gpt.h">
Expand Down
15 changes: 10 additions & 5 deletions Src/Target/Stm32f446re/Make/stm32f446re.ld
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@

/*
Copyright Christopher Kormanyos 2007 - 2022.
Distributed under the Boost Software License,
Version 1.0. (See accompanying file LICENSE_1_0.txt
or copy at http://www.boost.org/LICENSE_1_0.txt)
******************************************************************************
**
** Copyright Iliass Mahjoub 2023 - 2024.
** Copyright Christopher Kormanyos 2007 - 2024.
**
** Distributed under the Boost Software License,
** Version 1.0. (See accompanying file LICENSE_1_0.txt
** or copy at http://www.boost.org/LICENSE_1_0.txt)
**
******************************************************************************
*/

/* Linker script for STM32F4xx ARM(R) Cortex(TM)-M4 MCU */
Expand Down
31 changes: 5 additions & 26 deletions Src/Target/stm32l432kc/Make/stm32l432kc.ld
Original file line number Diff line number Diff line change
@@ -1,33 +1,12 @@
/*
******************************************************************************
**
** @file : LinkerScript.ld
** Copyright Iliass Mahjoub 2023 - 2024.
** Copyright Christopher Kormanyos 2007 - 2024.
**
** @author : Auto-generated by STM32CubeIDE
**
** @brief : Linker script for STM32L432KCUx Device from STM32L4 series
** 256KBytes ROM
** 64KBytes RAM
**
** Set heap size, stack size and stack location according
** to application requirements.
**
** Set memory bank area and size if external memory is used
**
** Target : STMicroelectronics STM32
**
** Distribution: The file is distributed as is, without any warranty
** of any kind.
**
******************************************************************************
** @attention
**
** Copyright (c) 2024 STMicroelectronics.
** All rights reserved.
**
** This software is licensed under terms that can be found in the LICENSE file
** in the root directory of this software component.
** If no LICENSE file comes with this software, it is provided AS-IS.
** Distributed under the Boost Software License,
** Version 1.0. (See accompanying file LICENSE_1_0.txt
** or copy at http://www.boost.org/LICENSE_1_0.txt)
**
******************************************************************************
*/
Expand Down

0 comments on commit b651587

Please sign in to comment.