Import patches-unapplied version 2.234 to ubuntu/utopic-proposed

Imported using git-ubuntu import.

Changelog parent: 8a676fab23

New changelog entries:
  [ James Hunt ]
  * ubuntu-core:
    - Don't remove doc to be kind to devs.
    - Boot with systemd (temporary method until we have systemd-sysv).
    - Configure first network interface.
impish
Colin Watson 11 years ago committed by usd-importer
parent 8a676fab23
commit 5264712d26

10
debian/changelog vendored

@ -1,3 +1,13 @@
livecd-rootfs (2.234) utopic; urgency=medium
[ James Hunt ]
* ubuntu-core:
- Don't remove doc to be kind to devs.
- Boot with systemd (temporary method until we have systemd-sysv).
- Configure first network interface.
-- Colin Watson <cjwatson@ubuntu.com> Mon, 04 Aug 2014 16:12:43 +0200
livecd-rootfs (2.233) utopic; urgency=medium
[ Colin Watson ]

@ -0,0 +1,9 @@
#!/bin/sh -x
# Boot using systemd and disable quiet boot
# to see what is happening.
systemd=/lib/systemd/systemd
sed \
-e 's,^\([ ]*GRUB_CMDLINE_LINUX\)=""$,\1="init=$systemd",g' \
-e 's,^\([ ]*GRUB_CMDLINE_LINUX_DEFAULT\)="quiet splash",\1="",g' \
/etc/default/grub

@ -0,0 +1,9 @@
#!/bin/sh -x
if=eth0
# Manually configure the first ethernet device
cat >/etc/network/interfaces.d/"$if"<<EOT
auto $if
iface $if inet dhcp
EOT

@ -1,11 +0,0 @@
#!/bin/bash
# remove-documentation: Remove unnecessary documentation to reduce disk usage
#
# Author: Alex Chiang <achiang@canonical.com>
# Date : November 9, 2010
echo "Removing documentation..."
find /usr/share/doc -depth -type f ! -name copyright|xargs rm || true
find /usr/share/doc -empty|xargs rmdir || true
rm -rf /usr/share/man /usr/share/groff /usr/share/info /usr/share/lintian /usr/share/linda /var/cache/man
Loading…
Cancel
Save