Introduce Alternate Toolchain gcc and binutils

Hostboot, OCC and potentially other packages are *VERY* sensitive to
GCC+binutils combinations (specially due to the use of libbfd to feed
the custom linker/loader script). That means that the default buildroot
toolchain can't be easily upgraded without risking hard-to-debug build
and runtime issues that might be caused by the change of the compiler +
binutils combination.

Address this by creating (yet another) GCC + Binutils host packages pair
that can be used, as an alternative to the one provided by buildroot.

Doing so would allow such packages to stay (indefinitely) using their
choice of gcc+binutils, while still allowing buildroot (and the Skiroot
environment) to evolve and use newer versions / releases.

Signed-off-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
diff --git a/openpower/package/alternate-binutils/Config.in b/openpower/package/alternate-binutils/Config.in
new file mode 100644
index 0000000..cb8c182
--- /dev/null
+++ b/openpower/package/alternate-binutils/Config.in
@@ -0,0 +1,22 @@
+config BR2_PACKAGE_ALTERNATE_BINUTILS
+		bool "alternate-binutils"
+		select BR2_CPP
+		help
+		  Build Binutils for an Alternate Toolchain, for use in
+		  certain packages
+
+if BR2_PACKAGE_ALTERNATE_BINUTILS
+
+config BR2_ALTERNATE_BINUTILS_VERSION
+		string "Alternate Toolchain Binutils Version"
+		default "2.31.1"
+
+config BR2_ALTERNATE_BINUTILS_EXTRA_CONFIG_OPTIONS
+		string "Extra configure options for Alternate Toolchain binutils"
+		default BR2_BINUTILS_EXTRA_CONFIG_OPTIONS
+		help
+		  Any extra options to the Alternate Toolchain's binutils
+		  configure script. The default is taken from
+		  BINUTILS_EXTRA_CONFIG_OPTIONS
+
+endif