mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-07-21 05:41:31 +00:00
Enable building of powerpc cloud images.
This commit is contained in:
parent
5ac47abce7
commit
2909aba4b5
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -1,7 +1,11 @@
|
|||||||
livecd-rootfs (2.396) UNRELEASED; urgency=medium
|
livecd-rootfs (2.396) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
|
[ Adam Conrad ]
|
||||||
* Remove obsolete pvr-omap4 special-casing to simplify configs.
|
* Remove obsolete pvr-omap4 special-casing to simplify configs.
|
||||||
|
|
||||||
|
[ Daniel Watkins ]
|
||||||
|
* Enable building of powerpc cloud images.
|
||||||
|
|
||||||
-- Adam Conrad <adconrad@ubuntu.com> Sun, 03 Apr 2016 02:39:50 -0600
|
-- Adam Conrad <adconrad@ubuntu.com> Sun, 03 Apr 2016 02:39:50 -0600
|
||||||
|
|
||||||
livecd-rootfs (2.395) xenial; urgency=medium
|
livecd-rootfs (2.395) xenial; urgency=medium
|
||||||
|
@ -470,6 +470,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
|
||||||
|
ppc64el|powerpc)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
. /build/config/functions
|
. /build/config/functions
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ case $arch in
|
|||||||
add_serial_console hvc0
|
add_serial_console hvc0
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
s390x)
|
powerpc|s390x)
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user