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.
This commit is contained in:
Daniil Baturin 2016-04-13 03:17:45 -04:00
parent 08a6856b3c
commit 6bf7fdff0f
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
grub-pc

View File

@ -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