hikey: Add UEFI sources for reference

UEFI needs to be built outside Android build system.
Please follow the instructions in README.

The sources correspond to:
https://github.com/96boards/edk2/commit/14eae0c12e71fd33c4c0fc51e4475e8db02566cf
https://github.com/96boards/arm-trusted-firmware/commit/e9b4909dcd75fc4ae7041cfb83d28ab9adb7afdf
https://github.com/96boards/l-loader/commit/6b784ad5c4ab00e2b1c6f53cd5f74054e5d00a78
https://git.linaro.org/uefi/uefi-tools.git/commit/abe618f8ab72034fff1ce46c9c006a2c6bd40a7e

Change-Id: Ieeefdb63e673e0c8e64e0a1f02c7bddc63b2c7fb
Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
diff --git a/uefi/linaro-edk2/StdLib/BsdSocketLib/res_data.c b/uefi/linaro-edk2/StdLib/BsdSocketLib/res_data.c
new file mode 100644
index 0000000..8831653
--- /dev/null
+++ b/uefi/linaro-edk2/StdLib/BsdSocketLib/res_data.c
@@ -0,0 +1,83 @@
+/*

+ * Copyright (c) 1995,1996 by Internet Software Consortium.

+ *

+ * Permission to use, copy, modify, and distribute this software for any

+ * purpose with or without fee is hereby granted, provided that the above

+ * copyright notice and this permission notice appear in all copies.

+ *

+ * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS

+ * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES

+ * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE

+ * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL

+ * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR

+ * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS

+ * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS

+ * SOFTWARE.

+ */

+

+#if defined(LIBC_SCCS) && !defined(lint)

+static char rcsid[] = "$Id: res_data.c,v 1.1.1.1 2003/11/19 01:51:35 kyu3 Exp $";

+#endif /* LIBC_SCCS and not lint */

+

+#include <sys/types.h>

+#include <sys/param.h>

+#include <sys/socket.h>

+#include <sys/time.h>

+#include <netinet/in.h>

+#include <arpa/inet.h>

+#include <arpa/nameser.h>

+#include <ctype.h>

+#include <resolv.h>

+#include <stdio.h>

+#include <stdlib.h>

+#include <string.h>

+#include <unistd.h>

+

+#include "res_config.h"

+

+const char *_res_opcodes[] = {

+    "QUERY",

+    "IQUERY",

+    "CQUERYM",

+    "CQUERYU",  /* experimental */

+    "NOTIFY",   /* experimental */

+    "UPDATE",

+    "6",

+    "7",

+    "8",

+    "9",

+    "10",

+    "11",

+    "12",

+    "13",

+    "ZONEINIT",

+    "ZONEREF",

+};

+

+const char *_res_resultcodes[] = {

+    "NOERROR",

+    "FORMERR",

+    "SERVFAIL",

+    "NXDOMAIN",

+    "NOTIMP",

+    "REFUSED",

+    "YXDOMAIN",

+    "YXRRSET",

+    "NXRRSET",

+    "NOTAUTH",

+    "ZONEERR",

+    "11",

+    "12",

+    "13",

+    "14",

+    "NOCHANGE",

+};

+

+#ifdef BIND_UPDATE

+const char *_res_sectioncodes[] = {

+    "ZONE",

+    "PREREQUISITES",

+    "UPDATE",

+    "ADDITIONAL",

+};

+#endif