~psusi/ubuntu/precise/installation-guide/partitions

« back to all changes in this revision

Viewing changes to eu/boot-installer/arm.xml

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2010-06-25 10:28:30 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100625102830-nvfcrroep8mvhkeo
Tags: 20100518ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Build only English (for now, until we figure out how to avoid trashing
    translations quite so badly with Ubuntu branding etc.).
  - Build only Ubuntu architectures (amd64, armel, i386, ia64, powerpc,
    sparc).
  - Extensive (although possibly incomplete) Ubuntu branding, adjustments
    for our mirror layout, etc.
  - Add "Ubuntu and Debian" and "What is Ubuntu?" section, text borrowed
    from the Ubuntu web site. Disable the "What is Debian GNU/Linux?"
    section.
  - Direct installation reports to ubuntu-users for now.
  - Adjust various memory and disk space requirements. Talk about the
    default Ubuntu desktop and Ubuntu tasks rather than Debian tasks.
  - Document mounting /sys in various places.
  - Unset supports-floppy-boot for all our architectures.
  - Add a few more supports-floppy-boot and bootable-usb conditionals.
  - Document our root password and sudo arrangements.
  - Document netboot-style USB images. Still mention the hd-media images,
    but they're downplayed since many USB sticks are too small for a full
    Ubuntu ISO image.
  - Document Kickstart installations (currently only the basics, a
    reference to Red Hat's documentation, and the differences from
    Anaconda).
  - Update keyboard preseeding documentation for console-setup.
  - Update chroot-install guide for console-setup and language packs; add
    a bit more advice about installing grub.
  - Disable documentation of win32-loader.
  - Document new simplified partman preseeding.
  - Document mirror/udeb/components.
  - Document apt-setup/security_path.
  - Don't recommend passing http://archive.ubuntu.com/ubuntu to
    debootstrap.
  - Document pkgsel/update-policy.
  - Document preseeding user-setup's home directory encryption facility.
  - Improve examples of tasksel/first preseeding to avoid mentioning
    standard, which is installed by default.
  - Document partman-auto-lvm/guided_size.
  - Document scheme for preseeding the use of CC.archive.ubuntu.com
    mirrors.
  - Document pkgsel/updatedb.
  - Document partman/default_filesystem.
  - Document how to override the weak password check.
  - Remove comments about automatic installation methods that have been
    removed from Ubuntu.
  - Remove documentation of
    base-installer/kernel/linux/initramfs-generators; setting this to
    anything other than the default will cause the installer to fail.
* Adjust list of armel architectures for Ubuntu.
* Bump kernelversion to 2.6.35.
* Bump release version and names for Maverick.
* Update Canonical's copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!-- retain these comments for translator revision tracking -->
2
 
<!-- original version: 11648 untranslated -->
3
 
 
4
 
  <sect2 arch="arm" id="boot-tftp"><title>Booting from TFTP</title>
5
 
 
6
 
&boot-installer-intro-net.xml;
7
 
 
8
 
  <sect3 arch="arm"><title>Booting from TFTP on NetWinder</title>
9
 
 
10
 
<para>
11
 
 
12
 
NetWinders have two network interfaces: The 10Mbps NE2000-compatible
13
 
card is <filename>eth0</filename> and the 100Mbps Tulip card is
14
 
<filename>eth1</filename>.
15
 
 
16
 
</para><note><para>
17
 
 
18
 
You need NeTTrom 2.2.1 or later to boot the
19
 
installation system. NeTTrom 2.3.3 is recommended: get these files
20
 
from 
21
 
<ulink url="ftp://ftp.netwinder.org/pub/netwinder/firmware/"></ulink>:
22
 
<itemizedlist>
23
 
<listitem><para>
24
 
 
25
 
<filename>nettrom-2.3-3.armv4l.rpm</filename>
26
 
 
27
 
</para></listitem>
28
 
<listitem><para>
29
 
 
30
 
<filename>nettrom-2.3.3.bin</filename>
31
 
 
32
 
</para></listitem>
33
 
<listitem><para>
34
 
 
35
 
<filename>nettrom-2.3.3.bin.md5sum</filename>
36
 
 
37
 
</para></listitem>
38
 
</itemizedlist>
39
 
 
40
 
</para></note><para>
41
 
 
42
 
After rebooting and interrupting the boot process during the countdown, you 
43
 
must first configure the network either with a static address:
44
 
<informalexample><screen>
45
 
 
46
 
    NeTTrom command-> setenv eth0_ip 192.168.0.10/24
47
 
 
48
 
</screen></informalexample>
49
 
where 24 is the number of set bits in the netmask, or a dynamic address:
50
 
<informalexample><screen>
51
 
 
52
 
    NeTTrom command-> boot diskless
53
 
 
54
 
</screen></informalexample>
55
 
 
56
 
</para><para>
57
 
 
58
 
You may also need to configure the <userinput>route1</userinput>
59
 
settings if the TFTP
60
 
server is not on the local subnet.  The rest of the config is pretty 
61
 
standard (the save-all step is optional):
62
 
<informalexample><screen>
63
 
 
64
 
    NeTTrom command-> setenv kerntftpserver 192.168.0.1
65
 
    NeTTrom command-> setenv kerntftpfile tftpboot.img
66
 
    NeTTrom command-> save-all
67
 
    NeTTrom command-> setenv netconfig_eth0 flash
68
 
    NeTTrom command-> setenv kernconfig tftp
69
 
 
70
 
</screen></informalexample>
71
 
 
72
 
</para><para>
73
 
 
74
 
Only the last two of these interfere with normal disk booting, so it is 
75
 
safe to <command>save-all</command> right before it, which will
76
 
store the network settings in case you need to boot from the network
77
 
again. Use the <command>printenv</command> command to review your
78
 
environment settings. Finally, if your <envar>cmdappend</envar>
79
 
NeTTrom variable has the <option>noinitrd</option> option (which is  
80
 
necessary to boot 2.4 kernels), you must remove it so the downloaded 
81
 
kernel can boot with its attached ramdisk.
82
 
 
83
 
</para>
84
 
  </sect3>
85
 
 
86
 
  <sect3 arch="arm"><title>Booting from TFTP on CATS</title>
87
 
 
88
 
<para>
89
 
 
90
 
On CATS machines, use <command>boot de0:</command> or similar at the
91
 
Cyclone prompt.
92
 
 
93
 
</para>
94
 
   </sect3>
95
 
  </sect2>
96
 
 
97
 
 
98
 
 
99
 
  <sect2 arch="arm"><title>Booting from CD-ROM</title>
100
 
 
101
 
&boot-installer-intro-cd.xml;
102
 
 
103
 
<para>
104
 
 
105
 
To boot a CD-ROM from the Cyclone console prompt, use the command
106
 
<command>boot cd0:cats.bin</command>
107
 
 
108
 
</para>
109
 
  </sect2>