~ubuntu-core-dev/debian-installer/xenial-proposed

« back to all changes in this revision

Viewing changes to build/boot/arm/glantank.preseed

  • Committer: Colin Watson
  • Date: 2007-11-28 18:32:20 UTC
  • mfrom: (664.2.2667)
  • Revision ID: cjwatson@canonical.com-20071128183220-ilixcc1n5fw1m2t6
Tags: 20061102ubuntu1
* Resynchronise with Debian. Remaining changes:
  - Ubuntu branding of various kinds.
  - Use Ubuntu kernels. Various tweaks for different udeb splits.
  - Fetch distribution name and version number from lsb_release.
  - Use the full version number in image directories.
  - Build-depend on belocs-locales-bin.
  - Various boot screen text adjustments.
  - Add server boot options.
  - Add memtest boot option.
  - Add live CD boot screens.
  - Adjust memory size recommendations.
  - Document pci=noacpi.
  - Add translatable boot screen text for gfxboot.
  - Use ubuntu-keyring-udeb (and gpgv-udeb) instead of the Debian archive
    keyring.
  - Switch all images to initramfs.
  - Add netboot images suitable for USB memory sticks.
  - Remove floppy support, since it never used to work with 2.6. (This may
    be fixed in the future.)
  - Disable gtk frontend.
  - Add kickseed-common and initrd-kickseed to all images containing
    preseed-common and initrd-preseed.
  - Add nfs-modules to all netboot images except powerpc, for Kickstart.
  - kbd-chooser -> console-setup.
  - Include keymap decision tree in all.utf.
  - Replace cdebconf-newt-entropy with cdebconf-newt-detect-keys in
    EXTRAUDEBS.
  - Add bootchart-udeb to all images.
  - Add grepmap-udeb to all images.
  - Add hdparm-udeb to cdrom images.
  - Add nic-firmware to netboot images.
  - Ship elilo configuration on i386 for Intel-based Macs.
  - Use mkvmlinuz'\''s fallback object files on powerpc rather than relying
    on the kernel'\''s.
  - Remove sparc32.
  - Use ${RAMDISK_SIZE} in sparc'\''s silo.conf rather than a hardcoded size.
  - Add input-modules to the sparc netboot image.
* Set default suite to feisty.
* Fix server option to preseed "tasks=standard" instead of
  "pkgsel/install-pattern=~t^ubuntu-standard$".
* Move to 2.6.19-7 kernels. Handle various module udeb changes:
  ide-core-modules, loop-modules, scsi-core-modules, usb-storage-modules
  -> storage-core-modules; lots of filesystem modules -> fs-core-modules,
  fs-secondary-modules.
* Remove auto-install/ai-choosers targets, at least for now.
* Make nic-firmware optional, since it seems to have gone AWOL (filed
  #73896).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Make sure we won't wait for the user to accept this network-console
 
2
# won't have been started at this point yet.
 
3
d-i lowmem/low                         note
 
4
 
 
5
d-i netcfg/choose_interface            select eth0
 
6
d-i netcfg/use_dhcp                    boolean true
 
7
 
 
8
# Fallback to a static IP if DHCP fails
 
9
d-i netcfg/dhcp_failed note
 
10
d-i netcfg/dhcp_options select Configure network manually
 
11
d-i netcfg/get_ipaddress string 192.168.1.77
 
12
d-i netcfg/get_netmask string 255.255.255.0
 
13
d-i netcfg/get_gateway string 192.168.1.1
 
14
d-i netcfg/get_nameservers string 192.168.1.1
 
15
 
 
16
# Any hostname and domain names assigned from dhcp take precedence over
 
17
# values set here. However, setting the values still prevents the questions
 
18
# from being shown, even if values come from dhcp.
 
19
d-i netcfg/get_hostname string unassigned-hostname
 
20
d-i netcfg/get_domain string unassigned-domain
 
21
 
 
22
# hack around localechooser being run before network-console
 
23
d-i debian-installer/locale string C
 
24
d-i countrychooser/country-name select United States
 
25
 
 
26
d-i network-console/password string install
 
27
d-i network-console/password-again string install
 
28