Differences between revisions 18 and 19
Revision 18 as of 2007-12-04 14:56:13
Size: 4420
Editor: MartinGuy
Comment: list more mirrors so maybe folks find one that works...
Revision 19 as of 2007-12-06 16:35:50
Size: 4018
Editor: GuillemJover
Comment: Use the canonical DebianPorts/Mirrors instead of inlined (and wrong) mirror list
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
with a mirror at
||'''URL'''||'''Country'''||'''Other protocols'''||
||http://ftp.de.debian.org/debian-ports||DE||ftp,rsync||
Line 21: Line 18:
and the original archive
{{{
deb http://ftp.gnuab.org/debian unstable main
deb http://ftp.gnuab.org/debian unreleased main
}}}
is mirrored at
||'''URL'''||'''Country'''||'''Other protocols'''||
||http://ftp.easynet.be/ftp/gnuab/debian||BE||ftp||
||http://www.gtlib.gatech.edu/pub/gnuab/debian||US||ftp, rsync||
A list of mirrors at [:DebianPorts/Mirrors:].

installing with d-i

It's now possible to install armel directly with d-i, using one of the images from here: http://people.debian.org/~joeyh/d-i/armel/images/daily/

nslu2 users should instead get an image from http://slug-firmware.net/ , if you need to use the onboard ethernet. See http://www.cyrius.com/debian/nslu2/ for instructions on using d-i with a slug.

The options below are for installing without d-i.

debian repositories

A repository tracking debian/ sid is available at:

deb http://ftp.debian-ports.org/debian unstable main
deb http://ftp.debian-ports.org/debian unreleased main

A list of mirrors at [:DebianPorts/Mirrors:].

Installing armel to qemu with d-i

Generally, you need to follow Aurelian Jarno's instructions http://www.aurel32.net/info/debian_arm_qemu.php with some small changes we'll document here.

You need a recent (sid?) qemu for this to work. Download kernel and d-i initrd:

http://people.debian.org/~joeyh/d-i/armel/images/daily/iop32x/netboot/initrd.gz
wget http://ftp.debian-ports.org/pub/debian/pool-armel/main/l/linux-2.6/linux-image-2.6.22-2-versatile_2.6.22-4_armel.deb
dpkg-deb -x linux-image-2.6.22-2-versatile_2.6.22-4_armel.deb .
cp boot/vmlinuz-2.6.22-2-versatile .

Create a hard disk image and boot d-i;

qemu-img create -f qcow hda.img 10G
qemu-system-arm -M versatilepb -kernel vmlinuz-2.6.22-2-versatile -initrd initrd.gz -hda hda.img -append "root=/dev/ram"

Install as usual. After install boot with the following command line:

qemu-system-arm -M versatilepb -kernel vmlinuz-2.6.22-2-versatile -hda hda.img -append "root=/dev/sda1"

Building EABI ready Kernel

You need to enable the following options to enable both EABI and OLDABI

CONFIG_ARM_THUMB=y
CONFIG_AEABI=y
CONFIG_OABI_COMPAT=y

To simplify things, make sure you have all essential kernel modules built-in, since oldabi modprobe can't load EABI modules nor the other way around.

Creating a EABI chroot using debootstrap

If you have a machine running oldabi arm port, you can ?CrossDebootstrap to create a armel chroot:

# debootstrap --verbose --arch armel --foreign sid /armel-chroot http://ftp.debian-ports.org/debian
# chroot /armel-chroot /debootstrap/debootstrap --second-stage

to put an armel chroot into the directory /armel-chroot. For the "--second-stage" part one needs a kernel compiled with options listed in previous section.

There is also a [http://people.debian.org/~riku/armel/armel-rootfs.tar.bz2 prebuilt rootfs].

Migrating arm installation to arm eabi installation

There is no proper way yet. The following instructions worked for me, but no guarantees at all.

  1. Create a chroot like above.
  2. store your current package selections with "dpkg --get-selections > file"

  3. enter your chroot and set the selections to match: "dpkg --set-selections < file"

  4. test install all the same applications to your chroot: "apt-get --no-act dselect-upgrade"
  5. backup
  6. boot into single user mode and make sure there is no processess running
  7. bind-mount / somewhere under the armel chroot, and move the directories (this is the scary part)

# mount -o bind / /chroot/armel/mnt/
# chroot /chroot/armel/
# cd /mnt
# mkdir old
# mv bin lib usr var old # relocate the old binary directores
# cp -a /bin /lib /usr /var . # copy the armel binaryes and library directories to root
# mv start-stop-daemon.REAL start-stop-daemon

At this point, make *sure* you have everything you need to boot and access your system under /mnt.

Exit the armel chroot and *REBOOT*. If it breaks, you get to keep the pieces.

If you are lucky, you have now a armel system. Finish the installation by pulling in the rest of packages you had installed:

apt-get -dselect-upgrade

TODO: recover old /var selectively.

* http://lists.debian.org/debian-arm/2007/01/msg00034.html