You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ja...@apache.org on 2019/03/26 17:12:09 UTC

[mynewt-core] branch master updated: Update APL2.0 license headers and rat excludes

This is an automated email from the ASF dual-hosted git repository.

janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new c21a2bd  Update APL2.0 license headers and rat excludes
     new a3217f2  Merge pull request #1726 from sjanc/rat
c21a2bd is described below

commit c21a2bdeb97c5a71345bdf8398a7c21d35a357e7
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Tue Mar 26 15:35:05 2019 +0100

    Update APL2.0 license headers and rat excludes
---
 .rat-excludes                                 | 28 +++++++++++++++++++++++++++
 hw/drivers/display/cfb/include/display/cfb.h  | 18 ++++++++++++++++-
 hw/drivers/display/cfb/src/cfb.c              | 18 ++++++++++++++++-
 hw/drivers/display/cfb/src/cfb_fonts.c        | 19 ++++++++++++++++--
 hw/drivers/display/include/display/display.h  | 18 ++++++++++++++++-
 hw/drivers/display/ssd1673/src/ssd1673.c      | 18 ++++++++++++++++-
 hw/drivers/display/ssd1673/src/ssd1673_regs.h | 22 ++++++++++++++++++---
 7 files changed, 132 insertions(+), 9 deletions(-)

diff --git a/.rat-excludes b/.rat-excludes
index 59f3ac9..4195212 100644
--- a/.rat-excludes
+++ b/.rat-excludes
@@ -95,6 +95,18 @@ split-ble400.ld
 nrf52-thingy_no_boot.ld
 split-nrf52-thingy.ld
 
+# Nordic SDK - BSD License
+nordic_pca10028_no_boot.ld
+split-nordic_pca10028.ld
+nordic_pca10028-16k_no_boot.ld
+split-nordic_pca10028-16k.ld
+nordic_pca10040_no_boot.ld
+split-nordic_pca10040.ld
+nordic_pca10056_no_boot.ld
+split-nordic_pca10056.ld
+nordic_pca20020_no_boot.ld
+split-nordic_pca20020.ld
+
 # RedBear Blend2 SDK - BSD License
 rb-blend2_no_boot.ld
 split-rb-blend2.ld
@@ -195,6 +207,10 @@ stm32f4xx_hal_gpio.c
 stm32f4xx_hal_rcc.c
 stm32f4xx_hal_uart.c
 
+#STM32F0xx HAL - BSD licence
+STM32F0xx_HAL_Driver
+stm32f0xx
+
 # baselibc - BSD License.
 # tinyprintf - BSD License.
 # klibc - MIT License.
@@ -359,6 +375,9 @@ nucleo-l476rg
 # NUCLEO-F072RB BSP - BSD License
 nucleo-f072rb
 
+# NUCLEO-F030R8 BSP - BSD License
+nucleo-f030r8
+
 # Microchip PIC32 SDK - BSD License
 p32mz2048efg100.h
 pic32_init_cache.S
@@ -451,3 +470,12 @@ split-fanstel-ev-bt840.ld
 
 # B-L072Z-LRWAN1 BSP - BSD License
 b-l072z-lrwan1
+
+# bluepill BSP - BSD License
+bluepill
+
+# Ruuvitag BSP - BSD License
+ruuvitag_rev_b
+
+# reel_board BSP - BSD License
+reel_board
diff --git a/hw/drivers/display/cfb/include/display/cfb.h b/hw/drivers/display/cfb/include/display/cfb.h
index 214adb0..5a0305d 100644
--- a/hw/drivers/display/cfb/include/display/cfb.h
+++ b/hw/drivers/display/cfb/include/display/cfb.h
@@ -1,7 +1,23 @@
 /*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
  * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  *
- * SPDX-License-Identifier: Apache-2.0
  */
 
 /**
diff --git a/hw/drivers/display/cfb/src/cfb.c b/hw/drivers/display/cfb/src/cfb.c
index e9a3c63..9f6322c 100644
--- a/hw/drivers/display/cfb/src/cfb.c
+++ b/hw/drivers/display/cfb/src/cfb.c
@@ -1,7 +1,23 @@
 /*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
  * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  *
- * SPDX-License-Identifier: Apache-2.0
  */
 
 #include "os/mynewt.h"
diff --git a/hw/drivers/display/cfb/src/cfb_fonts.c b/hw/drivers/display/cfb/src/cfb_fonts.c
index 8138b80..79778f2 100644
--- a/hw/drivers/display/cfb/src/cfb_fonts.c
+++ b/hw/drivers/display/cfb/src/cfb_fonts.c
@@ -1,7 +1,22 @@
 /*
- * Copyright (c) 2018 PHYTEC Messtechnik GmbH
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
  *
- * SPDX-License-Identifier: Apache-2.0
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  *
  * This file was generated from the font DroidSansMono.ttf
  * Copyright (C) 2008 The Android Open Source Project
diff --git a/hw/drivers/display/include/display/display.h b/hw/drivers/display/include/display/display.h
index 435b7e1..93dc6cc 100644
--- a/hw/drivers/display/include/display/display.h
+++ b/hw/drivers/display/include/display/display.h
@@ -1,7 +1,23 @@
 /*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
  * Copyright (c) 2017 Jan Van Winkel <ja...@dxplore.eu>
  *
- * SPDX-License-Identifier: Apache-2.0
  */
 
 /**
diff --git a/hw/drivers/display/ssd1673/src/ssd1673.c b/hw/drivers/display/ssd1673/src/ssd1673.c
index 710174b..2d2d6e7 100644
--- a/hw/drivers/display/ssd1673/src/ssd1673.c
+++ b/hw/drivers/display/ssd1673/src/ssd1673.c
@@ -1,7 +1,23 @@
 /*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
  * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  *
- * SPDX-License-Identifier: Apache-2.0
  */
 
 #include <stdint.h>
diff --git a/hw/drivers/display/ssd1673/src/ssd1673_regs.h b/hw/drivers/display/ssd1673/src/ssd1673_regs.h
index f23ca8d..dcddd14 100644
--- a/hw/drivers/display/ssd1673/src/ssd1673_regs.h
+++ b/hw/drivers/display/ssd1673/src/ssd1673_regs.h
@@ -1,11 +1,27 @@
-/* ssd1673_regs.h - Registers definition for SSD1673 controller */
-
 /*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
  * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  *
- * SPDX-License-Identifier: Apache-2.0
  */
 
+/* ssd1673_regs.h - Registers definition for SSD1673 controller */
+
 #ifndef __SSD1673_REGS_H__
 #define __SSD1673_REGS_H__