From 8d725fac63c31562cdc25e332634a6583ca7b9b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20F=C3=A4rber?= Date: Mon, 7 Mar 2011 01:34:04 +0100 Subject: [PATCH] softfloat: Prepend QEMU-style header with derivation notice MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The SoftFloat license requires "prominent notice that the work is derivative". Having added features like improved 16-bit support for arm already, add such a notice to the sources. softfloat-native.[ch] are not under the SoftFloat license and thus are not changed. Cc: Peter Maydell Signed-off-by: Andreas Färber Signed-off-by: Aurelien Jarno --- fpu/softfloat-macros.h | 5 +++++ fpu/softfloat-specialize.h | 5 +++++ fpu/softfloat.c | 5 +++++ fpu/softfloat.h | 6 ++++++ 4 files changed, 21 insertions(+) diff --git a/fpu/softfloat-macros.h b/fpu/softfloat-macros.h index 783822820e..54c0bad2a7 100644 --- a/fpu/softfloat-macros.h +++ b/fpu/softfloat-macros.h @@ -1,3 +1,8 @@ +/* + * QEMU float support macros + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat-specialize.h b/fpu/softfloat-specialize.h index adc5adad6a..4add93c9c6 100644 --- a/fpu/softfloat-specialize.h +++ b/fpu/softfloat-specialize.h @@ -1,3 +1,8 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat.c b/fpu/softfloat.c index 30b07e9b44..e800daa01c 100644 --- a/fpu/softfloat.c +++ b/fpu/softfloat.c @@ -1,3 +1,8 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ /*============================================================================ diff --git a/fpu/softfloat.h b/fpu/softfloat.h index fd61dc4b25..9e1072745c 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -1,3 +1,9 @@ +/* + * QEMU float support + * + * Derived from SoftFloat. + */ + /*============================================================================ This C header file is part of the SoftFloat IEC/IEEE Floating-point Arithmetic -- 2.30.2