aboutsummaryrefslogtreecommitdiffstats
path: root/GTA04/README
diff options
context:
space:
mode:
Diffstat (limited to 'GTA04/README')
-rw-r--r--GTA04/README26
1 files changed, 26 insertions, 0 deletions
diff --git a/GTA04/README b/GTA04/README
new file mode 100644
index 0000000..f70870f
--- /dev/null
+++ b/GTA04/README
@@ -0,0 +1,26 @@
+
+- The files in udev-rules should be copies to
+ /etc/udev/rules.d
+ this will ensure stable names in /dev for input devices and
+ the ttys that talk to the 3G modem.
+
+- Kernel can be compiled using a cross compiler. I use
+ angstrom-2011.03-x86_64-linux-armv7a-linux-gnueabi-toolchain.tar.bz2
+ from http://www.angstrom-distribution.org/toolchains/
+
+ This goes in /usr/local/angstom.
+ I then compile with
+
+ export PATH=$PATH:/usr/local/angstrom/arm/bin
+ export CROSS_COMPILE=/usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-
+ mkdir O
+ make O=O gta04_defconfig
+ make O=O -j8 uImage
+ rm -r M; mkdir M
+ cp O/arch/arm/book/uImage M
+ make O=O INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=`pwd`/M modules_install
+
+
+ then the uImage and modules are in 'M' ready to be copied
+
+