aboutsummaryrefslogtreecommitdiff
path: root/util/autoport/main.go
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2017-05-01 10:33:56 +0200
committerNico Huber <nico.h@gmx.de>2017-10-06 13:48:32 +0000
commit5930285206ba4fd661a68a0d0d9ccf9850620d82 (patch)
tree5b54d0286fb5bab2a6e2a6f823d5ce5b7aa6cf67 /util/autoport/main.go
parent128205fd087cc43f4cf9c7a947af5b951bcf2339 (diff)
autoport: Add GPL boilerplate header to not empty .c files
The idea behind this not to enforce a license on autogenerated code but is simply out of convenience in the case one wants to make the result public (in which case it needs to have these license headers). Change-Id: I1d6b48762b1249bb0becb178a30e1396bf6978fc Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/19510 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/autoport/main.go')
-rw-r--r--util/autoport/main.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/util/autoport/main.go b/util/autoport/main.go
index 2eb1588158..1d507802c9 100644
--- a/util/autoport/main.go
+++ b/util/autoport/main.go
@@ -207,6 +207,27 @@ func Create(ctx Context, name string) *os.File {
return mf
}
+func Add_gpl(fp *os.File) {
+ fp.WriteString(`/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2008-2009 coresystems GmbH
+ * Copyright (C) 2014 Vladimir Serbinenko
+ *
+ * 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.
+ */
+
+`)
+}
+
func RestorePCI16Simple(f *os.File, pcidev PCIDevData, addr uint16) {
fmt.Fprintf(f, " pci_write_config16(PCI_DEV(%d, 0x%02x, %d), 0x%02x, 0x%02x%02x);\n",
pcidev.Bus, pcidev.Dev, pcidev.Func, addr,