When SUBPROJECT environment variable is not set assume it to be ""

core-include-dmsetup
Balint Reczey 7 years ago
parent 0900d20265
commit 413a53d482

@ -31,13 +31,13 @@ Expire-Date: 0
lb bootstrap "$@" lb bootstrap "$@"
if [ "$SUBPROJECT" = minimized ] \ if [ "${SUBPROJECT:-}" = minimized ] \
&& ! Chroot chroot dpkg -l tzdata 2>&1 |grep -q ^ii; then && ! Chroot chroot dpkg -l tzdata 2>&1 |grep -q ^ii; then
# workaround for tzdata purge not removing these files # workaround for tzdata purge not removing these files
rm -f chroot/etc/localtime chroot/etc/timezone rm -f chroot/etc/localtime chroot/etc/timezone
fi fi
if [ "$SUBPROJECT" = minimized ]; then if [ "${SUBPROJECT:-}" = minimized ]; then
# set up dpkg filters to skip installing docs on minimizedd system # set up dpkg filters to skip installing docs on minimizedd system
mkdir -p chroot/etc/dpkg/dpkg.cfg.d mkdir -p chroot/etc/dpkg/dpkg.cfg.d
cat > chroot/etc/dpkg/dpkg.cfg.d/excludes <<EOF cat > chroot/etc/dpkg/dpkg.cfg.d/excludes <<EOF
@ -354,7 +354,7 @@ elif [ -e binary-tar.tar.gz ]; then
cp -a binary-tar.tar.gz "$PREFIX.rootfs.tar.gz" cp -a binary-tar.tar.gz "$PREFIX.rootfs.tar.gz"
fi fi
if [ "$PROJECT:$SUBPROJECT" = "ubuntu-core:system-image" ]; then if [ "$PROJECT:${SUBPROJECT:-}" = "ubuntu-core:system-image" ]; then
if [ -e "binary/$INITFS/filesystem.dir" ]; then if [ -e "binary/$INITFS/filesystem.dir" ]; then
rootfs="binary/$INITFS/filesystem.dir" rootfs="binary/$INITFS/filesystem.dir"
@ -402,7 +402,7 @@ fi
# ubuntu-core and ubuntu-desktop-next splits kernel stuff into a "device" tarball so # ubuntu-core and ubuntu-desktop-next splits kernel stuff into a "device" tarball so
# at this point 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
case $PROJECT:$SUBPROJECT in case $PROJECT:${SUBPROJECT:-} in
ubuntu-core:system-image|ubuntu-desktop-next:system-image) ubuntu-core:system-image|ubuntu-desktop-next:system-image)
# create device tarball (for snappy only atm) # create device tarball (for snappy only atm)

@ -117,7 +117,7 @@ case $IMAGEFORMAT in
ext2|ext3|ext4) ext2|ext3|ext4)
OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT" OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT"
PREINSTALLED=true PREINSTALLED=true
case $SUBPROJECT in case ${SUBPROJECT:-} in
wubi) wubi)
add_package install lupin-support add_package install lupin-support
COMPONENTS='main restricted universe multiverse' COMPONENTS='main restricted universe multiverse'
@ -196,7 +196,7 @@ HWE_X_PACKAGES="xserver-xorg-hwe-16.04 xserver-xorg-video-all-hwe-16.04 xserver-
HWE_KERNEL_FLAVOUR="generic-hwe-16.04" HWE_KERNEL_FLAVOUR="generic-hwe-16.04"
HWE_SIGNED_KERNEL_PACKAGE="linux-signed-$HWE_KERNEL_FLAVOUR" HWE_SIGNED_KERNEL_PACKAGE="linux-signed-$HWE_KERNEL_FLAVOUR"
if [ "$SUBPROJECT" = minimized ]; then if [ "${SUBPROJECT:-}" = minimized ]; then
OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal" OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal"
fi fi
@ -227,7 +227,7 @@ case $PROJECT in
# CDIMAGE_PREINSTALLED is not passed from build.py # CDIMAGE_PREINSTALLED is not passed from build.py
# and PREINSTALLED means something different. So # and PREINSTALLED means something different. So
# we use SUBPROJECT to pass on the information # we use SUBPROJECT to pass on the information
if [ "$SUBPROJECT" = "system-image" ]; then if [ "${SUBPROJECT:-}" = "system-image" ]; then
OPTS="${OPTS:+$OPTS }--linux-packages=linux-image" OPTS="${OPTS:+$OPTS }--linux-packages=linux-image"
fi fi
;; ;;
@ -481,7 +481,7 @@ case $PROJECT in
# SUBPROJECT, but it's a handy thing that launchpad-buildd # SUBPROJECT, but it's a handy thing that launchpad-buildd
# already passes through to us that we weren't otherwise # already passes through to us that we weren't otherwise
# using here. # using here.
case $SUBPROJECT in case ${SUBPROJECT:-} in
ubuntu-rtm/dogfood) ubuntu-rtm/dogfood)
MIRROR=http://derived-archive.dogfood.content.paddev.net/ubuntu-rtm/ MIRROR=http://derived-archive.dogfood.content.paddev.net/ubuntu-rtm/
OPTS="${OPTS:+$OPTS }--apt-secure false" OPTS="${OPTS:+$OPTS }--apt-secure false"
@ -499,7 +499,7 @@ case $PROJECT in
;; ;;
ubuntu-cpc) ubuntu-cpc)
if [ "$SUBPROJECT" = minimized ]; then if [ "${SUBPROJECT:-}" = minimized ]; then
add_task install cloud-image add_task install cloud-image
add_package install sudo add_package install sudo
else else
@ -639,7 +639,7 @@ case $PROJECT in
;; ;;
esac esac
case $SUBPROJECT in case ${SUBPROJECT:-} in
wubi) wubi)
add_binary_hook build-wubildr add_binary_hook build-wubildr
;; ;;
@ -665,10 +665,10 @@ lb config noauto \
"$@" "$@"
echo "LB_CHROOT_HOOKS=\"$CHROOT_HOOKS\"" >> config/chroot echo "LB_CHROOT_HOOKS=\"$CHROOT_HOOKS\"" >> config/chroot
echo "SUBPROJECT=\"$SUBPROJECT\"" >> config/chroot echo "SUBPROJECT=\"${SUBPROJECT:-}\"" >> config/chroot
echo "LB_BINARY_HOOKS=\"$BINARY_HOOKS\"" >> config/binary echo "LB_BINARY_HOOKS=\"$BINARY_HOOKS\"" >> config/binary
echo "BUILDSTAMP=\"$NOW\"" >> config/binary echo "BUILDSTAMP=\"$NOW\"" >> config/binary
echo "SUBPROJECT=\"$SUBPROJECT\"" >> config/binary echo "SUBPROJECT=\"${SUBPROJECT:-}\"" >> config/binary
case $ARCH+$SUBARCH in case $ARCH+$SUBARCH in
armhf+raspi2) armhf+raspi2)
@ -783,7 +783,7 @@ EOF
config/archives/proposed.list.binary config/archives/proposed.list.binary
fi fi
case $PROJECT:$SUBPROJECT in case $PROJECT:${SUBPROJECT:-} in
*-dvd:*) *-dvd:*)
. config/bootstrap . config/bootstrap
@ -869,7 +869,7 @@ EOF
fi fi
fi fi
case $SUBPROJECT in case ${SUBPROJECT:-} in
ubuntu-rtm|ubuntu-rtm/*) ubuntu-rtm|ubuntu-rtm/*)
# debootstrap doesn't know about ubuntu-rtm series directly. Rather # debootstrap doesn't know about ubuntu-rtm series directly. Rather
# than having to teach it, we employ a few hacks to make it use the # than having to teach it, we employ a few hacks to make it use the

@ -116,7 +116,7 @@ if [ "${should_install_grub}" -eq 1 ]; then
rm mountpoint/tmp/device.map rm mountpoint/tmp/device.map
if [ "$SUBPROJECT" = minimized ] && [ -n "$partuuid" ]; then if [ "${SUBPROJECT:-}" = minimized ] && [ -n "$partuuid" ]; then
echo "partuuid found for root device; forcing it in Grub" echo "partuuid found for root device; forcing it in Grub"
mkdir -p mountpoint/etc/default/grub.d mkdir -p mountpoint/etc/default/grub.d
echo "GRUB_FORCE_PARTUUID=$partuuid" >> mountpoint/etc/default/grub.d/40-force-partuuid echo "GRUB_FORCE_PARTUUID=$partuuid" >> mountpoint/etc/default/grub.d/40-force-partuuid

Loading…
Cancel
Save