Add OCC buildroot tooling
diff --git a/openpower/package/p8-pore-binutils/Config.in b/openpower/package/p8-pore-binutils/Config.in
new file mode 100644
index 0000000..7fd414c
--- /dev/null
+++ b/openpower/package/p8-pore-binutils/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_P8_PORE_BINUTILS
+        bool "p8-pore-binutils"
+        default y if (BR2_OPENPOWER_PLATFORM && BR2_powerpc_power8)
+        select BR2_CPP
+        help
+            Project to build the P8 PORE binutils
diff --git a/openpower/package/p8-pore-binutils/p8-pore-binutils.mk b/openpower/package/p8-pore-binutils/p8-pore-binutils.mk
new file mode 100644
index 0000000..3009f7d
--- /dev/null
+++ b/openpower/package/p8-pore-binutils/p8-pore-binutils.mk
@@ -0,0 +1,32 @@
+################################################################################
+#
+# p8-pore-binutils
+#
+################################################################################
+
+P8_PORE_BINUTILS_VERSION ?= 94a1a56cb3ce72a2d6202ab54206912cf9e1feb1
+P8_PORE_BINUTILS_SITE ?= $(call github,open-power,p8-pore-inutils,$(P8_PORE_BINUTILS_VERSION))
+P8_PORE_BINUTILS_LICENSE = Apache-2.0
+P8_PORE_BINUTILS_DEPENDENCIES = host-binutils
+
+P8_PORE_BINUTILS_INSTALL_IMAGES = YES
+P8_PORE_BINUTILS_INSTALL_TARGET = NO
+
+P8_PORE_BINUTILS_DIR = $(STAGING_DIR)/p8-pore-binutils
+P8_PORE_BINUTILS_BIN = $(STAGING_DIR)/p8-pore-binutils/linux
+
+define P8_PORE_BINUTILS_BUILD_CMDS
+        cd $(@D) && \
+        ./configure --prefix=$(P8_PORE_BINUTILS_DIR) \
+                    --exec-prefix=$(P8_PORE_BINUTILS_BIN) \
+                    --target=pore-elf64 \
+                    --build=i386-unknown-linux-gnu && \
+        make configure-host && \
+        make LDFLAGS=-all-static
+endef
+
+define P8_PORE_BINUTILS_INSTALL_IMAGES_CMDS
+        bash -c 'cd $(@D) && make install'
+endef
+
+$(eval $(generic-package))