Page 1 of 1

Debian Linux sur Nspire

Unread postPosted: 24 Feb 2013, 09:11
by Lionel Debroux
Fortytwo nous démontre aujourd'hui une distribution Debian standard tournant sur Nspire :)

2131

Ca ne présente pas de difficulté technique particulière, mais c'est quand même bien que quelqu'un ait pris le temps de le faire :)
* debootstrap / multistrap pour la création du rootfs;
* utilisation d'une board ARM physique pour finir le travail, ou bien de qemu-arm-static contenu dans le package Debian qemu-user-static:
Code: Select all
# Make sure we have the appropriate packages.
apt-get install debootstrap multistrap binfmt-support
# This package ought to register the appropriate definitions for binfmt-support
apt-get install qemu-user-static
# Load binfmt support
modprobe binfmt_misc
# Start a debootstrap that will fail when trying to install the packages
mkdir $DEST_DIR
cd $DEST_DIR
debootstrap --verbose --arch=armel sid . http://ftp.fr.debian.org/debian/
# Fix it. ln assumes the programs are on the same partition, use cp instead if they aren't.
ln /usr/bin/qemu-arm-static ./usr/bin/qemu-arm-static
# Start debootstrap again, and while at it, we can add some packages into the mix :)
debootstrap --verbose --arch=armel --include=locales,build-essential sid . http://ftp.fr.debian.org/debian/

(j'ai fait ce script il y a quelques mois au boulot, mais je n'ai pas essayé de l'appliquer à la Nspire)

Post frère: http://www.omnimaga.org/index.php?topic ... #msg285399

Re: Debian Linux sur Nspire

Unread postPosted: 24 Feb 2013, 11:12
by critor
Fortytwo, did you try on your upgraded TI-Npire prototype? ;)