mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-09 17:11:35 +00:00
Imported 2.561
No reason for CPC update specified.
This commit is contained in:
parent
7b280ed388
commit
830b298c93
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,3 +1,11 @@
|
|||||||
|
livecd-rootfs (2.561) disco; urgency=medium
|
||||||
|
|
||||||
|
* Support building pi3-arm64 core18 images. At the same time, make sure we
|
||||||
|
still use the right gadget tree repository for the classic arm64 pi3
|
||||||
|
image.
|
||||||
|
|
||||||
|
-- Łukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com> Wed, 06 Feb 2019 18:07:06 +0100
|
||||||
|
|
||||||
livecd-rootfs (2.560) disco; urgency=medium
|
livecd-rootfs (2.560) disco; urgency=medium
|
||||||
|
|
||||||
[ Colin Watson ]
|
[ Colin Watson ]
|
||||||
|
@ -239,6 +239,7 @@ EOF
|
|||||||
#
|
#
|
||||||
# This file is not managed by a package. If you no longer want to
|
# This file is not managed by a package. If you no longer want to
|
||||||
# see this message you can safely remove the file.
|
# see this message you can safely remove the file.
|
||||||
|
echo ""
|
||||||
echo "This system has been minimized by removing packages and content that are"
|
echo "This system has been minimized by removing packages and content that are"
|
||||||
echo "not required on a system that users do not log into."
|
echo "not required on a system that users do not log into."
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -341,8 +341,10 @@ case $IMAGEFORMAT in
|
|||||||
MODEL=dragonboard ;;
|
MODEL=dragonboard ;;
|
||||||
armhf+raspi2)
|
armhf+raspi2)
|
||||||
MODEL=pi2 ;;
|
MODEL=pi2 ;;
|
||||||
armhf+raspi3|arm64+raspi3)
|
armhf+raspi3)
|
||||||
MODEL=pi3 ;;
|
MODEL=pi3 ;;
|
||||||
|
arm64+raspi3)
|
||||||
|
MODEL=pi3-arm64 ;;
|
||||||
armhf+cm3)
|
armhf+cm3)
|
||||||
MODEL=cm3 ;;
|
MODEL=cm3 ;;
|
||||||
*)
|
*)
|
||||||
@ -379,6 +381,12 @@ case $IMAGEFORMAT in
|
|||||||
else
|
else
|
||||||
# classic images
|
# classic images
|
||||||
|
|
||||||
|
# Certain models have different names but are built from the same source gadget tree
|
||||||
|
case $MODEL in
|
||||||
|
pi3-arm64)
|
||||||
|
MODEL=pi3 ;;
|
||||||
|
esac
|
||||||
|
|
||||||
UBUNTU_IMAGE_ARGS=""
|
UBUNTU_IMAGE_ARGS=""
|
||||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${PROPOSED:+ --with-proposed}"
|
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${PROPOSED:+ --with-proposed}"
|
||||||
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${EXTRA_PPAS:+ --extra-ppas \"$EXTRA_PPAS\"}"
|
UBUNTU_IMAGE_ARGS="$UBUNTU_IMAGE_ARGS${EXTRA_PPAS:+ --extra-ppas \"$EXTRA_PPAS\"}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user