util/scripts: add copyright notices
Change-Id: Ia40543e5585845e5e6c178a620052c6a25927a5c Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/17102 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
4ef9899bfe
commit
4003283c51
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
# rebase.sh - rebase helper script
|
# rebase.sh - rebase helper script
|
||||||
#
|
#
|
||||||
|
# Copyright 2015 Google Inc.
|
||||||
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; version 2 of the License.
|
# the Free Software Foundation; version 2 of the License.
|
||||||
|
|
|
@ -1,4 +1,15 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# Copyright 2015 Google Inc.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
# converts a depthcharge fmap.dts into an fmaptool compatible .fmd format
|
# converts a depthcharge fmap.dts into an fmaptool compatible .fmd format
|
||||||
# requires fdt utilities (dtc, fdtget)
|
# requires fdt utilities (dtc, fdtget)
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,5 +1,18 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Copyright 2016 Google Inc.
|
||||||
|
#
|
||||||
|
# This program is free software; you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation; version 2 of the License.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
|
||||||
# $0 from-branch to-branch
|
# $0 from-branch to-branch
|
||||||
|
#
|
||||||
# applies all commits that from-branch has over to-branch,
|
# applies all commits that from-branch has over to-branch,
|
||||||
# based on a common ancestor and gerrit meta-data
|
# based on a common ancestor and gerrit meta-data
|
||||||
from=$1
|
from=$1
|
||||||
|
|
Loading…
Reference in New Issue