summaryrefslogtreecommitdiff
path: root/payloads/tianocoreboot/include/efi.h
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2014-12-01 22:18:26 +0100
committerPatrick Georgi <pgeorgi@google.com>2014-12-02 11:02:09 +0100
commit10b3994f1ae5551d7cc13afacd853a1bbc200f77 (patch)
tree0ad266b3fbfd2a73e4be4ff0120ba4508250d34a /payloads/tianocoreboot/include/efi.h
parent546953c0c553465761705fb0747964c08d634461 (diff)
Drop tianocoreboot ("Project PIANO")
There are four other approaches to provide UEFI on top of coreboot that actually get to a UEFI shell. No need to keep this experiment and confuse users. Change-Id: I81c52e24099852f6daf0d5725aec707bdfd75ae1 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/7622 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'payloads/tianocoreboot/include/efi.h')
-rw-r--r--payloads/tianocoreboot/include/efi.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/payloads/tianocoreboot/include/efi.h b/payloads/tianocoreboot/include/efi.h
deleted file mode 100644
index 8deef53a6d..0000000000
--- a/payloads/tianocoreboot/include/efi.h
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * This file is part of the TianoCoreBoot project.
- *
- * Copyright (C) 2013 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.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include <stdint.h>
-
-#define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1UL)
-#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
-
-typedef long intn_t;
-typedef unsigned long uintn_t;
-
-#include <EfiTypes.h>
-#include <EfiFirmwareVolumeHeader.h>
-#include <PiFirmwareFile.h>
-#include <PeiHob.h>
-#include <MemoryAllocationHob.h>
-
-#define EFI_DXE_FILE_GUID \
- { 0xb1644c1a, 0xc16a, 0x4c5b, { 0x88, 0xde, 0xea, 0xfb, 0xa9, 0x7e, 0x74, 0xd8 } }
-