mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-09 14:06:58 +02:00
Here's the upgrade-everything-to-Karmic change. As promised, some fairly
important things break. Here are some of the more noticable problems: * The Karmic xscreensaver is newer than ours, so we're pulling and invoking the upstream version instead. It will prompt you for the "chronos" password but it really wants the password you used to log in. Or hit CTRL-ALT-F2, log in with chronos and "killall xscreensaver". * I had to bump the rootfs size from 950M to 1024M to make room for everything (most likely xscreensaver). * WiFi isn't working. No clue why not. * The list of packages installed on the run-time image are different, almost certainly due to changes in the upstream dependencies. That may or may not have anything to do with the known failures. That said, if you use a wired internet connection, you can log in and browse the web, suspend, etc. and it doesn't crash. FWIW, upgrading to Karmic causes these packages to be removed from the run-time image: acpi cron gcj-4.4-jre-lib gob2 icedtea-6-jre-cacao libcloog-ppl0 libclutter-0.9-0 libgmpxx4ldbl libmysqlclient15off libpcsclite1 libpolkit-gobject-1-0 libppl-c2 libppl7 libreadline5 python-pkg-resources python-setuptools swig wpasupplicant These packages are added: arora dictionaries-common hdparm ibus ibus-anthy ibus-chewing ibus-gtk insserv libbsd0 libc-bin libclutter-1.0-0 libcroco3 libdrm-radeon1 libgsf-1-114 libgsf-1-common libibus1 libjpeg-progs libmysqlclient16 libpolkit-gobject-1-0 libreadline6 librsvg2-2 librsvg2-common libx86-1 miscfiles mountall pm-utils powermgmt-base python-ibus python-rsvg radeontool sash vbetool xscreensaver xscreensaver-data xserver-xorg-core xserver-xorg-input-vmmouse xserver-xorg-video-intel Review URL: http://codereview.chromium.org/501071
This commit is contained in:
parent
ff8b3d1338
commit
d26b8abee2
@ -48,8 +48,8 @@ apt-get --yes --force-yes --no-install-recommends \
|
|||||||
|
|
||||||
# Setup bootchart. Due to dependencies, this adds about 180MB!
|
# Setup bootchart. Due to dependencies, this adds about 180MB!
|
||||||
apt-get --yes --force-yes --no-install-recommends install bootchart
|
apt-get --yes --force-yes --no-install-recommends install bootchart
|
||||||
# TODO: Replace this with pybootchartgui, or remove it entirely.
|
# TODO: add pybootchartgui to create pretty picture.
|
||||||
apt-get --yes --force-yes --no-install-recommends install bootchart-java
|
|
||||||
|
|
||||||
# Install additional packages from a second mirror, if necessary. This must
|
# Install additional packages from a second mirror, if necessary. This must
|
||||||
# be done after all packages from the first repository are installed; after
|
# be done after all packages from the first repository are installed; after
|
||||||
|
@ -114,7 +114,8 @@ mkdir -p "$FLAGS_chroot"
|
|||||||
# Run debootstrap to create the base chroot environment
|
# Run debootstrap to create the base chroot environment
|
||||||
echo "Running debootstrap..."
|
echo "Running debootstrap..."
|
||||||
echo "You may need to enter password for sudo now..."
|
echo "You may need to enter password for sudo now..."
|
||||||
sudo debootstrap --arch=i386 "$FLAGS_suite" "$FLAGS_chroot" "$FLAGS_mirror"
|
sudo debootstrap --arch=i386 --exclude=rsyslog,ubuntu-minimal \
|
||||||
|
"$FLAGS_suite" "$FLAGS_chroot" "$FLAGS_mirror"
|
||||||
echo "Done running debootstrap."
|
echo "Done running debootstrap."
|
||||||
|
|
||||||
# Set up necessary mounts
|
# Set up necessary mounts
|
||||||
|
Loading…
Reference in New Issue
Block a user