From 6bf7fdff0f7e64bbd2b231a4041bbfaffa36223b Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Wed, 13 Apr 2016 03:17:45 -0400 Subject: For the ARM porting story: add copying a package list with arch-specific packages to the build-flavour script. Right now it only includes grub-pc. --- scripts/build-flavour | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts') diff --git a/scripts/build-flavour b/scripts/build-flavour index c97903f5..389be980 100755 --- a/scripts/build-flavour +++ b/scripts/build-flavour @@ -19,8 +19,14 @@ BUILD_TYPE=$(scripts/query-json build/build-config.json build_type) +BUILD_ARCH=$(scripts/query-json build/build-config.json architecture) # Add debug tools if it's a development image if [ $BUILD_TYPE = "development" ]; then cp data/package-lists/vyos-dev.list.chroot build/config/package-lists/ fi + +# Install grub-pc if it's an x86 build +if [ $BUILD_ARCH = 'amd64' -o $BUILD_ARCH = 'i686' ]; then + cp data/package-lists/vyos-x86.list.chroot build/config/package-lists/ +fi -- cgit v1.2.3