add build main configs

ubuntu/yakkety
Didier Roche 10 years ago
parent 5c619086a1
commit b35e94e457

@ -329,8 +329,8 @@ if [ -e "binary/$INITFS/filesystem.packages-remove" ]; then
fi fi
fi fi
# ubuntu-core splits kernel stuff into a "device" tarball so at this point # ubuntu-core and ubuntu-desktop-next splits kernel stuff into a "device" tarball so
# we reset it to "none" as all the work to extract it was done already # at this point we reset it to "none" as all the work to extract it was done already
# in a binary hook # in a binary hook
if [ "$PROJECT" = "ubuntu-core" ] && [ "$SUBPROJECT" = "system-image" ]; then if [ "$PROJECT" = "ubuntu-core" ] && [ "$SUBPROJECT" = "system-image" ]; then
LB_LINUX_FLAVOURS=none LB_LINUX_FLAVOURS=none
@ -343,6 +343,13 @@ if [ "$PROJECT" = "ubuntu-core" ] && [ "$SUBPROJECT" = "system-image" ]; then
mv device-azure.tar.gz "$PREFIX.azure.device.tar.gz" mv device-azure.tar.gz "$PREFIX.azure.device.tar.gz"
fi fi
fi fi
if [ "$PROJECT" = "ubuntu-desktop-next" ] && [ "$SUBPROJECT" = "system-image" ]; then
LB_LINUX_FLAVOURS=none
# rename to have the right prefix etc
mv device.tar.gz "$PREFIX.device.tar.gz"
fi
for FLAVOUR in $LB_LINUX_FLAVOURS; do for FLAVOUR in $LB_LINUX_FLAVOURS; do
if [ -z "$LB_LINUX_FLAVOURS" ] || [ "$LB_LINUX_FLAVOURS" = "none" ]; then if [ -z "$LB_LINUX_FLAVOURS" ] || [ "$LB_LINUX_FLAVOURS" = "none" ]; then

@ -210,6 +210,23 @@ case $PROJECT in
case $ARCH in case $ARCH in
amd64) add_package live linux-signed-generic ;; amd64) add_package live linux-signed-generic ;;
esac esac
# system image snappy desktop next image
# mvo: This is for cron.daily-preinstalled
# CDIMAGE_PREINSTALLED is not passed from build.py
# and PREINSTALLED means something different. So
# we use SUBPROJECT to pass on the information
if [ "$SUBPROJECT" = "system-image" ]; then
add_task install ubuntu-core
OPTS="${OPTS:+$OPTS }--linux-packages=linux-image"
# contains the framework definition
add_package install ubuntu-core-libs
# universe needed for 'system-image-cli'
COMPONENTS='main restricted universe'
fi
;; ;;
kubuntu|kubuntu-dvd) kubuntu|kubuntu-dvd)

Loading…
Cancel
Save