From 44e86ecdaa32df78d765313ebdcf31741730cc20 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Tue, 10 May 2016 11:40:27 -0700 Subject: [PATCH] update_chroot: do not reconfigure/rebuild the SDK's GRUB for arm64 Now built/installed under the board root instead. See https://github.com/coreos/coreos-overlay/pull/1950 --- update_chroot | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/update_chroot b/update_chroot index 439faf7063..f9772a5816 100755 --- a/update_chroot +++ b/update_chroot @@ -219,17 +219,6 @@ if [[ "${FLAGS_skip_toolchain_update}" -eq "${FLAGS_FALSE}" && \ for cross_chost in "${CROSS_CHOSTS[@]}"; do info "Updating cross ${cross_chost} toolchain" install_cross_toolchain "${cross_chost}" --quiet ${EMERGE_FLAGS} - - # Set grub for arm64, not enabled by default since it requires the above - # cross toolchain which isn't in the SDK by default. - if [[ "${cross_chost}" == aarch64-* ]]; then - if [[ ! -d /etc/portage/package.use ]]; then - sudo mkdir /etc/portage/package.use - fi - sudo_clobber "/etc/portage/package.use/grub" \ - <<<"sys-boot/grub grub_platforms_arm64" - sudo -E emerge --changed-use sys-boot/grub - fi done fi