This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#[email protected] | |
# This script will flash your N900. It assumes you want to use the MAEMO 5 GLOBAL RELEASE. | |
# Based on trying to understand http://wiki.maemo.org/Updating_the_tablet_firmware#N900 | |
set -e | |
echo "[[ Glenn's Maemo Flasher: [email protected] / @glennzw for comments ]]" | |
type flasher-3.5 >/dev/null 2>&1 || { echo >&2 "I require flasher but it's not installed. Install from http://www.fladnag.net/downloads/telephone/n900/tools/ | |
Once you have done that, you must enable i386 package in your debian based distro by entering the following command in a seperate termianl window .... | |
sudo dpkg --add-architecture i386" ;exit 1; } |