Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving ambiguous terms out of license headers. #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions build/gcc/STM32_128K_20K_FLASH.ld
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
Linker script for STM32F10x
Copyright RAISONANCE 2007 (modified by Lanchon 1-Feb-2008)
You can use, copy and distribute this file freely, but without any waranty.
Configure memory sizes, end of stack and boot mode for your project here.
*/

/*
* Copyright RAISONANCE 2007 (modified by Lanchon 1-Feb-2008)
*
* SPDX-License-Identifier: GPL-3.0-only
* Linker script for STM32F10x
* Configure memory sizes, end of stack and boot mode for your project here.
*/

/* include the common STM32F10x sub-script */
INCLUDE "STM32_COMMON.ld"
Expand Down
23 changes: 7 additions & 16 deletions build/gcc/STM32_COMMON.ld
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
/*
Common part of the linker scripts for STR32 devices
Copyright RAISONANCE 2007
You can use, modify and distribute thisfile freely, but without any waranty.
*/
/* Copyright RAISONANCE 2007 */

/* SPDX-License-Identifier: GPL-3.0-only */
/* Common part of the linker scripts for STR32 devices */

/* default stack sizes.

These are used by the startup in order to allocate stacks for the different modes.
*/
* These are used by the startup in order to allocate stacks for the different modes.
*/

__Stack_Size = 1024 ;

Expand All @@ -19,16 +16,10 @@ __Stack_Init = _estack - __Stack_Size ;
/*"PROVIDE" allows to easily override these values from an object file or the commmand line.*/
PROVIDE ( _Stack_Init = __Stack_Init ) ;

/*
There will be a link error if there is not this amount of RAM free at the end.
*/
/* There will be a link error if there is not this amount of RAM free at the end. */
_Minimum_Stack_Size = 0x100 ;



/*
this sends all unreferenced IRQHandlers to reset
*/
/* This sends all unreferenced IRQHandlers to reset */


PROVIDE ( Undefined_Handler = 0 ) ;
Expand Down
12 changes: 6 additions & 6 deletions build/gcc/STM32_SEC_FLASH.ld
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
Common part of the linker scripts for STR71x devices in FLASH mode
(that is, the FLASH is seen at 0)
Copyright RAISONANCE 2005
You can use, modify and distribute thisfile freely, but without any waranty.
*/
/* Copyright RAISONANCE 2005 */

/* SPDX-License-Identifier: GPL-3.0-only */
/* Common part of the linker scripts for STR71x devices in FLASH mode */
/* (that is, the FLASH is seen at 0) */




/* Sections Definitions */
Expand Down
14 changes: 7 additions & 7 deletions build/gcc/stm32.ld
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
Linker script for STM32F10x
Copyright RAISONANCE 2007 (modified by Lanchon 1-Feb-2008)
You can use, copy and distribute this file freely, but without any waranty.
Configure memory sizes, end of stack and boot mode for your project here.
*/

/*
* Copyright RAISONANCE 2007 (modified by Lanchon 1-Feb-2008)
*
* SPDX-License-Identifier: GPL-3.0-only
* Linker script for STM32F10x
* Configure memory sizes, end of stack and boot mode for your project here.
*/

/* include the common STM32F10x sub-script */
INCLUDE "./STM32_COMMON.ld"
Expand Down