summaryrefslogtreecommitdiff
path: root/en/install-methods/usb-setup
diff options
context:
space:
mode:
Diffstat (limited to 'en/install-methods/usb-setup')
-rw-r--r--en/install-methods/usb-setup/powerpc.xml17
-rw-r--r--en/install-methods/usb-setup/x86.xml40
2 files changed, 25 insertions, 32 deletions
diff --git a/en/install-methods/usb-setup/powerpc.xml b/en/install-methods/usb-setup/powerpc.xml
index 08d01e057..89c75f561 100644
--- a/en/install-methods/usb-setup/powerpc.xml
+++ b/en/install-methods/usb-setup/powerpc.xml
@@ -7,14 +7,15 @@
Most USB sticks do not come pre-configured in such a way that Open
Firmware can boot from them, so you will need to repartition the stick.
-On Mac systems, run <userinput>mac-fdisk /dev/sda</userinput>,
+On Mac systems, run
+<userinput>mac-fdisk /dev/<replaceable>sdX</replaceable></userinput>,
initialise a new partition map using the <userinput>i</userinput>
command, and create a new partition of type Apple_Bootstrap using the
<userinput>C</userinput> command. (Note that the first "partition" will
always be the partition map itself.) Then type
<informalexample><screen>
-$ hformat /dev/<replaceable>sda2</replaceable>
+$ hformat /dev/<replaceable>sdX2</replaceable>
</screen></informalexample>
Take care that you use the correct device name for your USB stick. The
@@ -38,7 +39,7 @@ so you will have to install <command>yaboot</command> by hand using the
<classname>hfsutils</classname> tools. Type
<informalexample><screen>
-$ hmount /dev/sda2
+$ hmount /dev/<replaceable>sdX2</replaceable>
$ hcopy -r /usr/lib/yaboot/yaboot :
$ hattrib -c UNIX -t tbxi :yaboot
$ hattrib -b :
@@ -54,8 +55,9 @@ utilities.
</para><para>
-Mount the partition (<userinput>mount /dev/sda2 /mnt</userinput>) and
-copy the following files from the Debian archives to the stick:
+Mount the partition
+(<userinput>mount /dev/<replaceable>sdX2</replaceable> /mnt</userinput>)
+and copy the following installer image files to the stick:
<itemizedlist>
<listitem><para>
@@ -78,11 +80,6 @@ copy the following files from the Debian archives to the stick:
<filename>boot.msg</filename> (optional boot message)
</para></listitem>
-<listitem><para>
-
-Optional kernel modules
-
-</para></listitem>
</itemizedlist>
</para><para>
diff --git a/en/install-methods/usb-setup/x86.xml b/en/install-methods/usb-setup/x86.xml
index 5e9f28509..db5d58a15 100644
--- a/en/install-methods/usb-setup/x86.xml
+++ b/en/install-methods/usb-setup/x86.xml
@@ -17,7 +17,7 @@ or any other partitioning tool to create a FAT16 partition, and then
create the filesystem using:
<informalexample><screen>
-# mkdosfs /dev/<replaceable>sda1</replaceable>
+# mkdosfs /dev/<replaceable>sdX1</replaceable>
</screen></informalexample>
Take care that you use the correct device name for your USB stick. The
@@ -28,31 +28,32 @@ Take care that you use the correct device name for your USB stick. The
In order to start the kernel after booting from the USB stick, we will
put a boot loader on the stick. Although any boot loader
-(e.g. <command>LILO</command>) should work, it's convenient to use
-<command>SYSLINUX</command>, since it uses a FAT16 partition and can
+(e.g. <classname>lilo</classname>) should work, it's convenient to use
+<classname>syslinux</classname>, since it uses a FAT16 partition and can
be reconfigured by just editing a text file. Any operating system
which supports the FAT file system can be used to make changes to the
configuration of the boot loader.
</para><para>
-To put <command>SYSLINUX</command> on the FAT16 partition on your USB
+To put <classname>syslinux</classname> on the FAT16 partition on your USB
stick, install the <classname>syslinux</classname> and
<classname>mtools</classname> packages on your system, and do:
<informalexample><screen>
-# syslinux /dev/<replaceable>sda1</replaceable>
+# syslinux /dev/<replaceable>sdX1</replaceable>
</screen></informalexample>
Again, take care that you use the correct device name. The partition
-must not be mounted when starting <command>SYSLINUX</command>. This
+must not be mounted when starting <command>syslinux</command>. This
procedure writes a boot sector to the partition and creates the file
<filename>ldlinux.sys</filename> which contains the boot loader code.
</para><para>
-Mount the partition (<userinput>mount /dev/sda1 /mnt</userinput>) and
-copy the following files from the Debian archives to the stick:
+Mount the partition
+(<userinput>mount /dev/<replaceable>sdX1</replaceable> /mnt</userinput>)
+and copy the following installer image files to the stick:
<itemizedlist>
<listitem><para>
@@ -65,30 +66,25 @@ copy the following files from the Debian archives to the stick:
<filename>initrd.gz</filename> (initial ramdisk image)
</para></listitem>
-<listitem><para>
-
-<filename>syslinux.cfg</filename> (SYSLINUX configuration file)
-
-</para></listitem>
-<listitem><para>
-
-Optional kernel modules
-
-</para></listitem>
</itemizedlist>
-If you want to rename the files, please note that
-<command>SYSLINUX</command> can only process DOS (8.3) file names.
+You can choose between either the regular version or the graphical version
+of the installer. The latter can be found in the <filename>gtk</filename>
+subdirectory. If you want to rename the files, please note that
+<classname>syslinux</classname> can only process DOS (8.3) file names.
</para><para>
-The <filename>syslinux.cfg</filename> configuration file should
-contain the following two lines:
+Next you should create a <filename>syslinux.cfg</filename> configuration
+file, which at a bare minimum should contain the following two lines:
<informalexample><screen>
default vmlinuz
append initrd=initrd.gz
</screen></informalexample>
+For the graphical installer you should add
+<userinput>video=vesa:ywrap,mtrr vga=788</userinput> to the second line.
+
</para>
</sect3>