Merge lp:~xnox/debian-cd/ubuntu-branding-s390x into lp:~ubuntu-cdimage/debian-cd/ubun3

Proposed by Dimitri John Ledkov
Status: Merged
Merged at revision: 1927
Proposed branch: lp:~xnox/debian-cd/ubuntu-branding-s390x
Merge into: lp:~ubuntu-cdimage/debian-cd/ubun3
Diff against target: 84 lines (+17/-32)
4 files modified
data/xenial/s390x/README.boot (+2/-7)
data/xenial/s390x/d390.tdf (+0/-7)
data/xenial/s390x/ubuntu.ins (+6/-6)
tools/boot/xenial/boot-s390x (+9/-12)
To merge this branch: bzr merge lp:~xnox/debian-cd/ubuntu-branding-s390x
Reviewer Review Type Date Requested Status
Steve Langasek Approve
Review via email: mp+283002@code.launchpad.net

Description of the change

Ubuntu branding, to match next debian-installer upload.

To post a comment you must log in.
1928. By Dimitri John Ledkov

grammar, maybe.

Revision history for this message
Steve Langasek (vorlon) wrote :

Do the changes to the source paths being copied from the DI_DIR mean that a corresponding change has already landed to the debian-installer package?

review: Needs Information
Revision history for this message
Steve Langasek (vorlon) wrote :

Sorry, just read that you said it will match "next debian-installer upload". So yes, this looks good to me, I'll merge to trunk and wait for you to let me know when it should be deployed to production.

review: Approve
Revision history for this message
Dimitri John Ledkov (xnox) wrote :

It will be shortly, with the d-i upload for 4.3.0-7.18 kernel.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'data/xenial/s390x/README.boot'
--- data/xenial/s390x/README.boot 2015-12-11 11:50:48 +0000
+++ data/xenial/s390x/README.boot 2016-01-18 18:13:51 +0000
@@ -12,10 +12,5 @@
12network: all installer components and Debian packages are retrieved12network: all installer components and Debian packages are retrieved
13from a mirror.13from a mirror.
1414
1515Exporting full .iso contents (including the hidden .disk directory)
16Tip for users of the Hercules emulator16allows one to use the result as a valid mirror for installation.
17--------------------------------------
18If you want to ipl the installer off this CD, mount it on the host
19system (e.g. on /media/cdrom) and enter the following in the Hercules
20management console:
21 ipl /media/cdrom/boot/d390.ins
2217
=== removed file 'data/xenial/s390x/d390.tdf'
--- data/xenial/s390x/d390.tdf 2015-12-11 11:50:48 +0000
+++ data/xenial/s390x/d390.tdf 1970-01-01 00:00:00 +0000
@@ -1,7 +0,0 @@
1@TDF
2H:\BOOT\LINUX_TP UNDEFINED RECSIZE 1024
3H:\BOOT\PARMFILE UNDEFINED RECSIZE 1024
4H:\BOOT\ROOT.BIN UNDEFINED RECSIZE 1024
5TM
6TM
7EOT
80
=== renamed file 'data/xenial/s390x/d390.ins' => 'data/xenial/s390x/ubuntu.ins'
--- data/xenial/s390x/d390.ins 2015-12-11 11:50:48 +0000
+++ data/xenial/s390x/ubuntu.ins 2016-01-18 18:13:51 +0000
@@ -1,6 +1,6 @@
1* Debian GNU/Linux for S/390 (boot from CD-ROM or FTP-Server)1* Ubuntu for z Series (boot from CD-ROM or FTP-Server)
2linux_vm 0x000000002kernel.ubuntu 0x00000000
3root.off 0x0001040c3initrd.off 0x0001040c
4root.siz 0x000104144initrd.siz 0x00010414
5parmfile 0x000104805parmfile.ubuntu 0x00010480
6root.bin 0x010000006initrd.ubuntu 0x01000000
77
=== modified file 'tools/boot/xenial/boot-s390x'
--- tools/boot/xenial/boot-s390x 2015-12-16 21:52:35 +0000
+++ tools/boot/xenial/boot-s390x 2016-01-18 18:13:51 +0000
@@ -44,25 +44,22 @@
44mkdir -p $imagedir44mkdir -p $imagedir
45DI_DIR="$DI_PATH/current/images"45DI_DIR="$DI_PATH/current/images"
4646
47cp -lf "$DI_DIR/generic/debian.exec" $imagedir47cp -lf "$DI_DIR/generic/ubuntu.exec" $imagedir
48cp -lf "$DI_DIR/generic/parmfile.debian" $imagedir48cp -lf "$DI_DIR/generic/parmfile.ubuntu" $imagedir
49cp -lf "$DI_DIR/generic/initrd.debian" $imagedir49cp -lf "$DI_DIR/generic/initrd.ubuntu" $imagedir
50cp -lf "$DI_DIR/generic/kernel.debian" $imagedir50cp -lf "$DI_DIR/generic/kernel.ubuntu" $imagedir
5151
52# Create the files specifying offset and size of the initrd52# Create the files specifying offset and size of the initrd
53perl -e "print pack('N', 0x1000000)" >"$imagedir/root.off"53perl -e "print pack('N', 0x1000000)" >"$imagedir/initrd.off"
54perl -e "print pack('N', -s '$imagedir/root.bin')" >"$imagedir/root.siz"54perl -e "print pack('N', -s '$imagedir/initrd.ubuntu')" >"$imagedir/initrd.siz"
5555
56cp "$DI_DIR/MANIFEST.udebs" .56cp "$DI_DIR/MANIFEST.udebs" .
57list_kernel_abis $images_S390 | check_kernel_sync57list_kernel_abis $images_S390 | check_kernel_sync
5858
59# Copy the different boot files59# Copy the different boot files
60# - d390.ins : for booting from CD-ROM or FTP-Server60# - ubuntu.ins : for booting from CD-ROM or FTP-Server
61cp $BASEDIR/data/$CODENAME/$ARCH/d390* "$imagedir/"61# - README
62sed -e 's,^[^*],boot/&,g' < $BASEDIR/data/$CODENAME/$ARCH/d390.ins > "boot$N/d390.ins"62cp $BASEDIR/data/$CODENAME/$ARCH/* $imagedir
63
64# Copy the README file
65cp $BASEDIR/data/$DI_CODENAME/$ARCH/README.boot "boot$N/"
6663
67# Include the boot$N/-tree into the iso-image64# Include the boot$N/-tree into the iso-image
68add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J"65add_mkisofs_opt $CDDIR/../$N.mkisofs_opts "-J"

Subscribers

People subscribed via source and target branches