:idea:
See 3rd Message for latest scriptOld stuff:
I promised Hugh that I\'d release this almost a month ago now... I\'ve been trying to get rid of the last bug, but I can\'t hack it so time to open it up and see if others can help.
I have a working system able to run the SDK fully built on an old version of Morphix lite from July 2003.
On all other Debian/Knoppix-based systems, I am able to get the OpieSDK (kdevelop 3.0.0) running, but when creating or openning a project I get:
Could not create language plugin for C++
Here is the install script so far, OpieSDK needs about 550MB at its peak and will use about 460 after it is finished. That doesn\'t include any packages you need to get for dependancies.
#!/bin/bash
### using Knoppix 3.4 c\'t as a base
# knoppix lang=us
## k->knoppix->root shell
# wget http://debian.tu-bs.de/knoppix/installer/knx-templates-0.39.tgz
# cp /usr/sbin/knoppix-installer .
# sudo ./knoppix-installer
## Make an install partition of 2.8GB / partition
## choose knoppix-type system install (not debian)
##
# create working dir
mkdir ~/OPIE_SDK_install
cd ~/OPIE_SDK_install
# Install and Prep GCC 3.3.2 ARM cross-compiler be used by OPIESDK
## this is for OZ 3.3.6-pre1, for older versions of OZ you must use gcc 2.95.3
## and this next bit does not apply.
## ftp://ftp.handhelds.org/toolchain/ # Obsolete Compiler Tool Chain
wget http://www.openzaurus.org/official/toolchain/cross-3.3.2.tar.bz2
# wget http://192.168.0.101/cross-3.3.2.tar.bz2 # Local Mirror for testing
cd /
tar -jxvf ~/OPIE_SDK_install/cross-3.3.2.tar.bz2
cd ~/OPIE_SDK_install
mkdir -p /usr/local/arm/
ln -s /opt/cross /usr/local/arm/2.95.3
rm -f ~/OPIE_SDK_install/cross-3.3.2.tar.bz2
# install SDK
# wget ftp://ftp.handhelds.org/zecke/OpieSdk.tar.bz2 # OPIE SDK Main
# wget http://lorien.handhelds.org/ftp.handhelds.org/zecke/OpieSdk.tar.bz2 # OPIE SDK Mirror
wget http://lorien.handhelds.org/ftp.handhelds.org/zecke/OpieSdk.tar.bz2 # OPIE SDK Mirror
# wget http://192.168.0.101/OpieSdk.tar.bz2 # Local Mirror for testing
cd /
tar -jxvf ~/OPIE_SDK_install/OpieSdk.tar.bz2
cd ~/OPIE_SDK_install
rm -f ~/OPIE_SDK_install/OpieSdk.tar.bz2
df -h
ln -s /usr/lib/libpcreposix.so.3 /usr/lib/libpcreposix.so.0
ln -s /usr/lib/libpcre.so.3 /usr/lib/libpcre.so.0
apt-get install libpng3
To start it up use:
/opt/OpieSdk/start_kdevelop
-G