Skip to content

Commit 254631a

Browse files
committed
Merge pull request #10 from rust-embedded/update-license-headers
license: fixup ownership in license headers
2 parents f25852b + 38398bf commit 254631a

15 files changed

+100
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ support, etc.
9494
## License
9595

9696
```
97-
Copyright (c) 2016, Paul Osborne <[email protected]>
97+
Copyright (c) 2016, The gpio-utils Authors.
9898
9999
Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
100100
http://www.apache.org/license/LICENSE-2.0> or the MIT license

src/commands/gpio_export.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, The Gpio Util Project Developers.
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioExportOptions;
410
use config::GpioConfig;

src/commands/gpio_exportall.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, Paul Osborne <[email protected]>
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioExportAllOptions;
410
use config::GpioConfig;

src/commands/gpio_poll.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, The gpio-utils Authors
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioPollOptions;
410
use config::GpioConfig;

src/commands/gpio_read.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, Paul Osborne <[email protected]>
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioReadOptions;
410
use config::GpioConfig;

src/commands/gpio_status.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
8+
19
use options::GpioStatusOptions;
210
use config::GpioConfig;
311
use config::PinConfig;

src/commands/gpio_unexport.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, The gpio-utils Authors
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioUnexportOptions;
410
use config::GpioConfig;

src/commands/gpio_unexportall.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, The gpio-utils Authors
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioUnexportAllOptions;
410
use config::GpioConfig;

src/commands/gpio_write.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, The gpio-utils Authors
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
use options::GpioWriteOptions;
410
use config::GpioConfig;

src/commands/mod.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
// Copyright (C) 2016, Paul Osborne <[email protected]>
1+
// Copyright (c) 2016, The gpio-utils Authors.
2+
//
3+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
5+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
6+
// option. This file may not be copied, modified, or distributed
7+
// except according to those terms.
28

39
pub mod gpio_read;
410
pub mod gpio_export;

0 commit comments

Comments
 (0)