~ubuntu-branches/ubuntu/natty/base-installer/natty

« back to all changes in this revision

Viewing changes to kernel/tests/dotest

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-12-03 12:21:27 UTC
  • mfrom: (0.2.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091203122127-iarb75ev63k7whoe
Tags: 1.103ubuntu1
* Resynchronise with Debian. Remaining changes:
  - Use and depend on the Ubuntu keyring.
  - Enable the restricted component by default, unless
    apt-setup/restricted is preseeded to false.
  - Set up the default sources.list to look in -updates and -security (the
    latter from apt-setup/security_host) as well as the unadorned suite;
    also -proposed if apt-setup/proposed is true.
  - Use Ubuntu kernel image names.
  - Allow preseeding base-installer/kernel/override-image to force a given
    kernel to be used.
  - Install busybox-initramfs rather than busybox.
  - Revert Joey's patch to call base-installer.d hooks after running
    debootstrap, which broke console-setup's expectation of being able to
    insert its configuration file into /target before console-setup is
    installed by debootstrap.
  - Add armel/imx51 and armel/dove subarchitectures.
  - Prefer PAE kernels on machines with >3GB of RAM.
  - Install kernel headers to match the kernel. This may be overridden by
    setting base-installer/kernel/headers to false.
* Remove all traces of lpia, which is being decommissioned (see
  https://blueprints.launchpad.net/ubuntu/+spec/mobile-lucid-lpia-future).

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
                2.6)
30
30
                        WANT_KERNELS="$KERNEL_26"
31
31
                        ;;
 
32
                7)
 
33
                        WANT_KERNELS="$KERNEL_7"
 
34
                        ;;
 
35
                8)
 
36
                        WANT_KERNELS="$KERNEL_8"
 
37
                        ;;
32
38
        esac
33
39
        WANT_KERNELS="$(echo "$WANT_KERNELS" | tr '\n' ' ' | tr -s ' ' | sed 's/ *$//')"
34
40
        WANT_KERNEL_STEM="${WANT_KERNELS%% *}"