From 5930285206ba4fd661a68a0d0d9ccf9850620d82 Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Mon, 1 May 2017 10:33:56 +0200 Subject: 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 Reviewed-on: https://review.coreboot.org/19510 Reviewed-by: Patrick Rudolph Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber --- util/autoport/bd82x6x.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'util/autoport/bd82x6x.go') diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go index ee7e207d25..796bc0fee5 100644 --- a/util/autoport/bd82x6x.go +++ b/util/autoport/bd82x6x.go @@ -43,6 +43,7 @@ func (b bd82x6x) GPIO(ctx Context, inteltool InteltoolData) { AddROMStageFile("gpio.c", "") + Add_gpl(gpio) gpio.WriteString("#include \n\n") addresses := [3][6]int{ @@ -305,6 +306,7 @@ func (b bd82x6x) Scan(ctx Context, addr PCIDevData) { sb := Create(ctx, "early_southbridge.c") defer sb.Close() AddROMStageFile("early_southbridge.c", "") + Add_gpl(sb) sb.WriteString(`#include #include #include @@ -401,6 +403,7 @@ void mainboard_get_spd(spd_raw_data *spd, bool id_only) gnvs := Create(ctx, "gnvs.c") defer gnvs.Close() + Add_gpl(gnvs) gnvs.WriteString(`#include /* FIXME: check this function. */ -- cgit v1.2.3