|
|
|
### Apt setup
|
|
|
|
# You can choose to install non-free and contrib software.
|
|
|
|
#d-i apt-setup/non-free boolean true
|
|
|
|
#d-i apt-setup/contrib boolean true
|
|
|
|
|
|
|
|
# If you select ftp, the mirror/country string does not need to be set.
|
|
|
|
#d-i mirror/protocol string ftp
|
|
|
|
d-i mirror/country string manual
|
|
|
|
d-i mirror/http/hostname string ports.ubuntu.com
|
|
|
|
d-i mirror/http/directory string /ubuntu-ports
|
|
|
|
|
|
|
|
#Removes the prompt about missing modules:
|
|
|
|
# Continue without installing a kernel?
|
|
|
|
d-i base-installer/kernel/skip-install boolean true
|
|
|
|
# Continue the install without loading kernel modules?
|
|
|
|
d-i anna/no_kernel_modules boolean true
|
|
|
|
|
|
|
|
# Stop Ubuntu from installing random kernel choice
|
|
|
|
d-i base-installer/kernel/image select none
|
|
|
|
|
|
|
|
# Controls whether to use NTP to set the clock during the install
|
|
|
|
d-i clock-setup/ntp boolean true
|
|
|
|
# NTP server to use. The default is almost always fine here.
|
|
|
|
d-i clock-setup/ntp-server string pool.ntp.org
|
|
|
|
|
|
|
|
# Individual additional packages to install
|
|
|
|
d-i pkgsel/include string u-boot-tools pastebinit initramfs-tools wget linux-firmware linux-firmware-nonfree ntpdate bash devmem2 fbset
|
|
|
|
|
|
|
|
# Whether to upgrade packages after debootstrap.
|
|
|
|
# Allowed values: none, safe-upgrade, full-upgrade
|
|
|
|
d-i pkgsel/upgrade select safe-upgrade
|
|
|
|
|
|
|
|
# Controls whether to use NTP to set the clock during the install
|
|
|
|
d-i clock-setup/ntp boolean true
|
|
|
|
|
|
|
|
# During installations from serial console, the regular virtual consoles
|
|
|
|
# (VT1-VT6) are normally disabled in /etc/inittab. Uncomment the next
|
|
|
|
# line to prevent this.
|
|
|
|
d-i finish-install/keep-consoles boolean true
|
|
|
|
|
|
|
|
# Avoid that last message about the install being complete.
|
|
|
|
d-i finish-install/reboot_in_progress note
|
|
|
|
|
|
|
|
# This command is run just before the install finishes, but when there is
|
|
|
|
# still a usable /target directory. You can chroot to /target and use it
|
|
|
|
# directly, or use the apt-install and in-target commands to easily install
|
|
|
|
# packages and run commands in the target system.
|
|
|
|
d-i preseed/late_command \
|
|
|
|
string apt-install parted; in-target /sbin/parted /dev/mmcblk0 set 1 boot on ;
|
|
|
|
|