Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | Last revision Both sides next revision | ||
products:a38x:software:os:debian [2018/08/11 21:18] artox set preferred-locale |
products:a38x:software:os:debian [2018/08/13 15:17] artox bugfix for preseed to be fully automatic |
||
---|---|---|---|
Line 68: | Line 68: | ||
<code> | <code> | ||
# Localization | # Localization | ||
- | d-i debian-installer/locale select en_GB.UTF-8 | + | d-i debian-installer/locale select en_GB |
- | d-i debian-installer/language string en | + | |
- | d-i localechooser/preferred-locale select en_GB.UTF-8 | + | |
# Networking | # Networking | ||
Line 92: | Line 90: | ||
# Time | # Time | ||
d-i clock-setup/utc boolean true | d-i clock-setup/utc boolean true | ||
- | d-i time/zone string Israel | + | d-i time/zone string Europe/Berlin |
d-i clock-setup/ntp boolean true | d-i clock-setup/ntp boolean true | ||
Line 114: | Line 112: | ||
# Exit Installer | # Exit Installer | ||
d-i finish-install/reboot_in_progress note | d-i finish-install/reboot_in_progress note | ||
+ | |||
+ | # Install U-Boot (u-boot-clearfog-pro-sata.kwb must be placed on the usb drive right next to the preseed.cfg) | ||
+ | # d-i preseed/late_command string dd if=/hd-media/u-boot-clearfog-pro-sata.kwb of=/dev/sda bs=512 seek=1 conv=sync | ||
</code> | </code> | ||
Line 123: | Line 124: | ||
The preseed.cfg file should be placed on the installation drive next to the iso image. In addition the automatic install has to be explicitly enabled through the kernel commandline from the U-Boot console: | The preseed.cfg file should be placed on the installation drive next to the iso image. In addition the automatic install has to be explicitly enabled through the kernel commandline from the U-Boot console: | ||
<code> | <code> | ||
- | setenv bootargs "auto file=/hd-media/preseed.cfg" | + | setenv bootargs "auto=true file=/hd-media/preseed.cfg" |
# boot into installer, e.g. usb | # boot into installer, e.g. usb | ||
run bootcmd_usb0 | run bootcmd_usb0 |