mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-10 17:41:32 +00:00
Import patches-unapplied version 2.234 to ubuntu/utopic-proposed
Imported using git-ubuntu import. Changelog parent: 8a676fab2386045951488682d8462bac68dc53f6 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.
This commit is contained in:
parent
8a676fab23
commit
5264712d26
10
debian/changelog
vendored
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
|
livecd-rootfs (2.233) utopic; urgency=medium
|
||||||
|
|
||||||
[ Colin Watson ]
|
[ Colin Watson ]
|
||||||
|
9
live-build/ubuntu-core/hooks/03-boot_with_systemd.chroot
Executable file
9
live-build/ubuntu-core/hooks/03-boot_with_systemd.chroot
Executable file
@ -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
|
9
live-build/ubuntu-core/hooks/04-configure_network.chroot
Executable file
9
live-build/ubuntu-core/hooks/04-configure_network.chroot
Executable file
@ -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…
x
Reference in New Issue
Block a user