From 5ab5fdb484b18baad6f96884bee829d669056044 Mon Sep 17 00:00:00 2001 From: Joel Stanley Date: Mon, 31 Oct 2016 23:10:24 +1030 Subject: Update to Buildroot 2016.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Regenerate defconfigs * The GCC 5 series is the buildroot default, so we need to explicitly select our GCC version if we want something else. We've gone with GCC 4.9 for Witherspoon. All other platforms are GCC 6. * Move to the latest glibc and binutils releases * We still use the 4.4 kernel headers for all platforms, including those on the 4.9 release candiates. This is because buildroot is yet to understand the 4.9 kernel. One important part of this shift is to update the external format. From the Buildroot documentation: > Before Buildroot 2016.11, it was possible to use only one br2-external > tree at once. With Buildroot 2016.11 came the possibility to use more > than one simultaneously (for details, see Section 9.2, “Keeping > customizations outside of Buildroot”). > > This however means that older br2-external trees are not usable as-is. A > minor change has to be made: adding a name to your br2-external tree. > > This can be done very easily in just a few steps: > > First, create a new file named external.desc, at the root of your > br2-external tree, with a single line defining the name of your > br2-external tree: > > $ echo 'name: NAME_OF_YOUR_TREE' >external.desc > Note. Be careful when choosing a name: It has to be unique and be made > with only ASCII characters from the set [A-Za-z0-9_]. > > Then, change every occurence of BR2_EXTERNAL in your br2-external tree > with the new variable: > > $ find . -type f | xargs sed -i > 's/BR2_EXTERNAL/BR2_EXTERNAL_NAME_OF_YOUR_TREE_PATH/g' > Now, your br2-external tree can be used with Buildroot 2016.11 onward. > > Note: This change makes your br2-external tree incompatible with > Buildroot before 2016.11. Signed-off-by: Joel Stanley --- openpower/package/loadkeys/loadkeys.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openpower/package/loadkeys') diff --git a/openpower/package/loadkeys/loadkeys.mk b/openpower/package/loadkeys/loadkeys.mk index db6cbcab..0a05026d 100644 --- a/openpower/package/loadkeys/loadkeys.mk +++ b/openpower/package/loadkeys/loadkeys.mk @@ -20,9 +20,9 @@ define LOADKEYS_INSTALL_TARGET_CMDS endef define LOADKEYS_POST_INSTALL - $(INSTALL) -D -m 0755 $(BR2_EXTERNAL)/package/loadkeys/S16-keymap \ + $(INSTALL) -D -m 0755 $(BR2_EXTERNAL_OP_BUILD_PATH)/package/loadkeys/S16-keymap \ $(TARGET_DIR)/etc/init.d/ - $(INSTALL) -D -m 0755 $(BR2_EXTERNAL)/package/loadkeys/backtab-keymap \ + $(INSTALL) -D -m 0755 $(BR2_EXTERNAL_OP_BUILD_PATH)/package/loadkeys/backtab-keymap \ $(TARGET_DIR)/etc/kbd/config endef -- cgit v1.2.1