mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-09 01:41:31 +00:00
ubuntu-cpc: Enable building of powerpc cloud images.
This commit is contained in:
parent
b0453f87e8
commit
bfcc963d8b
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.209.16) trusty; urgency=medium
|
||||||
|
|
||||||
|
[ Daniel Watkins ]
|
||||||
|
* Enable building of powerpc cloud images.
|
||||||
|
|
||||||
|
-- Robert C Jennings <robert.jennings@canonical.com> Tue, 24 May 2017 14:31:47 -0500
|
||||||
|
|
||||||
livecd-rootfs (2.209.15) trusty; urgency=medium
|
livecd-rootfs (2.209.15) trusty; urgency=medium
|
||||||
|
|
||||||
[ Ben Howard ]
|
[ Ben Howard ]
|
||||||
|
@ -414,6 +414,10 @@ case $PROJECT in
|
|||||||
ppc64el)
|
ppc64el)
|
||||||
add_task install server
|
add_task install server
|
||||||
;;
|
;;
|
||||||
|
powerpc)
|
||||||
|
KERNEL_FLAVOURS=powerpc64-smp
|
||||||
|
add_task install server
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
OPTS="${OPTS:+$OPTS }--system=normal"
|
OPTS="${OPTS:+$OPTS }--system=normal"
|
||||||
OPTS="${OPTS:+$OPTS }--hdd-label=cloudimg-rootfs"
|
OPTS="${OPTS:+$OPTS }--hdd-label=cloudimg-rootfs"
|
||||||
|
@ -8,8 +8,8 @@ BOOT_MOUNTPOINT=
|
|||||||
ROOTPART_START=1
|
ROOTPART_START=1
|
||||||
|
|
||||||
case $ARCH:$SUBARCH in
|
case $ARCH:$SUBARCH in
|
||||||
ppc64el:*)
|
ppc64el:*|powerpc:*)
|
||||||
echo "ppc64el disk images are handled separately"
|
echo "POWER disk images are handled separately"
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
armhf:raspi2)
|
armhf:raspi2)
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
#!/bin/bash -eux
|
#!/bin/bash -eux
|
||||||
if [ "$ARCH" != "ppc64el" ]; then
|
case $ARCH in
|
||||||
exit 0
|
ppc64el|powerpc)
|
||||||
fi
|
;;
|
||||||
|
*)
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
. /build/config/functions
|
. /build/config/functions
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ case $arch in
|
|||||||
i386|amd64)
|
i386|amd64)
|
||||||
add_serial_console ttyS0
|
add_serial_console ttyS0
|
||||||
;;
|
;;
|
||||||
ppc64el)
|
powerpc|ppc64el)
|
||||||
add_serial_console hvc0
|
add_serial_console hvc0
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user