From 2bebd0eec51e8c7bdc716a6595d5c04f2ce48073 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 23 Feb 2018 19:04:46 +0100 Subject: [PATCH] embed/trezorhal+unix: add copyright headers --- embed/trezorhal/common.c | 7 +++++++ embed/trezorhal/image.c | 7 +++++++ embed/trezorhal/rng.c | 9 ++++++++- embed/unix/common.c | 7 +++++++ embed/unix/rng.c | 7 +++++++ 5 files changed, 36 insertions(+), 1 deletion(-) diff --git a/embed/trezorhal/common.c b/embed/trezorhal/common.c index a976b3d2f3..792135a6fd 100644 --- a/embed/trezorhal/common.c +++ b/embed/trezorhal/common.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) Pavol Rusnak, SatoshiLabs + * + * Licensed under TREZOR License + * see LICENSE file for details + */ + #include STM32_HAL_H #include "common.h" diff --git a/embed/trezorhal/image.c b/embed/trezorhal/image.c index 14c4083f9e..8db67b9053 100644 --- a/embed/trezorhal/image.c +++ b/embed/trezorhal/image.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) Pavol Rusnak, SatoshiLabs + * + * Licensed under TREZOR License + * see LICENSE file for details + */ + #include #include "blake2s.h" diff --git a/embed/trezorhal/rng.c b/embed/trezorhal/rng.c index 620c1c8af6..3438c9e0f5 100644 --- a/embed/trezorhal/rng.c +++ b/embed/trezorhal/rng.c @@ -1,7 +1,14 @@ -#include "rng.h" +/* + * Copyright (c) Pavol Rusnak, SatoshiLabs + * + * Licensed under TREZOR License + * see LICENSE file for details + */ #include STM32_HAL_H +#include "rng.h" + #pragma GCC optimize("no-stack-protector") // applies to all functions in this file void rng_init(void) diff --git a/embed/unix/common.c b/embed/unix/common.c index c72afd6d0b..2f5b9369cc 100644 --- a/embed/unix/common.c +++ b/embed/unix/common.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) Pavol Rusnak, SatoshiLabs + * + * Licensed under TREZOR License + * see LICENSE file for details + */ + #include #include #include diff --git a/embed/unix/rng.c b/embed/unix/rng.c index 513c075638..c16a3c1c72 100644 --- a/embed/unix/rng.c +++ b/embed/unix/rng.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) Pavol Rusnak, SatoshiLabs + * + * Licensed under TREZOR License + * see LICENSE file for details + */ + #include #include