From 70f8ed0b294013d53aa6c426cda02c792bcf6c01 Mon Sep 17 00:00:00 2001 From: Karsten Merker Date: Fri, 3 Apr 2015 16:04:10 +0000 Subject: Installation-Guide: Document the u-boot images provided together with the installer since d-i Jessie RC2, and describe how to use the pre-built installer SD card images for armhf that are available starting with d-i Jessie RC3. --- en/boot-installer/arm.xml | 52 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'en/boot-installer/arm.xml') diff --git a/en/boot-installer/arm.xml b/en/boot-installer/arm.xml index ca9bb5d4c..095638a47 100644 --- a/en/boot-installer/arm.xml +++ b/en/boot-installer/arm.xml @@ -186,6 +186,58 @@ bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r} run bootcmd_usb0 command. + + + Using pre-built SD-card images with the installer + + For a number of systems, Debian provides SD card images that contain + both u-boot and the &d-i;. These images are provided in two variants + - one for downloading the software packages over the network + (available at &armmp-netboot-sd-img;) and one for offline + installations using a Debian CD/DVD (available at + &armmp-hd-media-sd-img;). To save space and network bandwidth, the + images consist of two parts - a system-dependent part named + firmware.<system-type>.img.gz, and a + system-independent part named partition.img.gz. + + + To create a complete image from the two parts on Linux systems, you + can use zcat as follows: + + zcat firmware.<system-type>.img.gz partition.img.gz > complete_image.img + + On Windows systems, you have to first decompress the two parts + separately, which can be done e.g. by using 7-Zip, and then + concatenate the decompressed parts together by running the command + + copy /b firmware.<system-type>.img + partition.img complete_image.img + + in a Windows CMD.exe window. + + + Write the resulting image onto an SD card, e.g. by running the + following command on a Linux system: + + cat complete_image.img > /dev/SD_CARD_DEVICE + + After plugging the SD card into the target system and powering the + system up, the installer is loaded from the SD card. If you use the + hd-media variant for offline installations, you must provide the + installer with access to the first &debian; CD/DVD on a separate + medium, which can e.g. be a CD/DVD ISO image on a USB stick. + + + When you come to the partitioning step in the installer (see ), you can delete or replace any previous + partitions on the card. Once the installer is started, it runs + completely in the system's main memory and does not need to access the + SD card anymore, so you can use the full card for installing &debian;. + The easiest way to create a proper partition layout on the SD card is + to let the installer automatically create one for you (see + ). + + +