Remove aura special case in setup_board.

Now that aura is default, we don't need to special-case it anymore.

BUG=chromium-os:25818
TEST=Verify that default prebuilts uploaded by the x86-generic builder
     are used now instead of the aura-specific prebuilts. These prebuilts
     have aura enabled now, since it is the default.

Change-Id: I8b78f53f5ceab6e5907390e03554120f20ea96fe
Reviewed-on: https://gerrit.chromium.org/gerrit/15726
Tested-by: Ryan Cui <rcui@chromium.org>
Reviewed-by: Ryan Cui <rcui@chromium.org>
Commit-Ready: David James <davidjames@chromium.org>
Tested-by: David James <davidjames@chromium.org>
This commit is contained in:
David James 2012-02-10 16:41:50 -08:00 committed by Gerrit
parent d5d23b8d5a
commit a69b68deb7

View File

@ -357,11 +357,7 @@ print_board_binhost_config() {
preflight_binhost="$binhost_dir/x86-generic-PREFLIGHT_BINHOST.conf"
fi
if [[ $ARCH = x86 && ! -f "$chrome_binhost" ]]; then
if portageq-$BOARD_VARIANT envvar USE | grep -Eq '(^| )aura( |$)'; then
chrome_binhost="$binhost_dir/x86-generic_aura-$chrome_binhost_suffix"
else
chrome_binhost="$binhost_dir/x86-generic-$chrome_binhost_suffix"
fi
chrome_binhost="$binhost_dir/x86-generic-$chrome_binhost_suffix"
fi
local partner_overlay="$SRC_ROOT/private-overlays/chromeos-partner-overlay"
local internal_binhost_dir="$partner_overlay/chromeos/binhost/target"