1106 shaares
3 results
tagged
uboot
F*cking U-boot!
Marche actuellement pour moi.
Depuis n'importe quel pc sous linux, formater une clé usb en ext2 puis la monter sur /mnt/archusb
cd /tmp
wget wget http://archlinuxarm.org/os/ArchLinuxARM-chromebook-latest.tar.gz
tar -xf ArchLinuxARM-chromebook-latest.tar.gz -C /mnt/archusb
La commande tar donne des messages d'erreur, les ignorer.
Démonter la clé et la plugger dans le chromebook.
Booter sur la clé à l'aide de la commande suivante.
setenv arch_usb 'setenv bootargs root=/dev/sda1 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
run arch_usb
login : root
password : root
Enjoy!
UPDATE 20/01/2015
Since the last alarm release broke the wifi for the samsung chromebook, this howto will give you a networkless archlinux.
Issue is with systemd > 215 and chromeOS kernel.
What I have tried so far : downgrade system to 215 with offline package and restart systemd (systemctl daemon-reexec) : Nope, still need a restart.
UPDATE : 27/01/2015
i found an old alarm version and use it to setup arch again.
Depuis n'importe quel pc sous linux, formater une clé usb en ext2 puis la monter sur /mnt/archusb
cd /tmp
wget wget http://archlinuxarm.org/os/ArchLinuxARM-chromebook-latest.tar.gz
tar -xf ArchLinuxARM-chromebook-latest.tar.gz -C /mnt/archusb
La commande tar donne des messages d'erreur, les ignorer.
Démonter la clé et la plugger dans le chromebook.
Booter sur la clé à l'aide de la commande suivante.
setenv arch_usb 'setenv bootargs root=/dev/sda1 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
run arch_usb
login : root
password : root
Enjoy!
UPDATE 20/01/2015
Since the last alarm release broke the wifi for the samsung chromebook, this howto will give you a networkless archlinux.
Issue is with systemd > 215 and chromeOS kernel.
What I have tried so far : downgrade system to 215 with offline package and restart systemd (systemctl daemon-reexec) : Nope, still need a restart.
UPDATE : 27/01/2015
i found an old alarm version and use it to setup arch again.
Cette commande u-boot ma encore sauvé la vie; autant la mettre en lieu sûr.
setenv arch_boot 'setenv bootargs root=/dev/mmcblk0p2 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
setenv bootcmd 'run arch_boot'
saveenv
UPDATE : Solution dégueulasse pour éviter que le chromebook vide sa batterie en s'allumant tout seul.
setenv 1 'setenv bootargs root=/dev/mmcblk0p2 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
setenv bootcmd 'if sleep 5; then vboot_test poweroff; fi'
saveenv
Faire un Ctrl + C au boot avant les 5 secondes et taper "run 1" pour démarrer normalement
Oui, c'est un hack dégueulasse, j'avais prévenu.
setenv arch_boot 'setenv bootargs root=/dev/mmcblk0p2 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
setenv bootcmd 'run arch_boot'
saveenv
UPDATE : Solution dégueulasse pour éviter que le chromebook vide sa batterie en s'allumant tout seul.
setenv 1 'setenv bootargs root=/dev/mmcblk0p2 rootfstype=ext2 rootwait rw; mmc dev 0; ext2load mmc 0:1 42000000 vmlinux.uimg; bootm 42000000'
setenv bootcmd 'if sleep 5; then vboot_test poweroff; fi'
saveenv
Faire un Ctrl + C au boot avant les 5 secondes et taper "run 1" pour démarrer normalement
Oui, c'est un hack dégueulasse, j'avais prévenu.