SHR post-installation

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(marking as outdated)
m (SHR post-installation script)
 
Line 15: Line 15:
 
   echo "SHR (Lite) Post Installation Script"  
 
   echo "SHR (Lite) Post Installation Script"  
 
   echo "============================"
 
   echo "============================"
   echo "Version 1.01 - 25.08.2009"
+
   echo "Version 1.2 - 12.11.2009"
 
    
 
    
 
   # vLANGUAGE="cz"
 
   # vLANGUAGE="cz"
 
   vLANGUAGE="de"
 
   vLANGUAGE="de"
 
    
 
    
   echo "SHR-PIS Install Navit - Car Navigation"
+
   echo "SHR-PIS Update Navit Config Files"
  echo "--------------------------------------"
+
  echo "src navit http://download.navit-project.org/navit/openmoko/svn" > /etc/opkg/navit-feed.conf
+
  opkg update
+
  opkg install navit
+
  opkg install navit-locale-$vLANGUAGE
+
  mkdir /home/root/.navit
+
  echo "Navit: Solve libgps problem"
+
  opkg install libgps17
+
  ln -s /usr/lib/libgps.so.17 /usr/lib/libgps.so.16
+
 
+
  # Already done in version SHR 20090808:
+
  echo "SHR-PIS Install a Working Alarm Clock"
+
  echo "-------------------------------------"
+
  opkg remove -force-depends elementary-alarm
+
  opkg install ffalarms
+
 
+
  echo "SHR-PIS Install Bluetooth Package"
+
 
   echo "---------------------------------"
 
   echo "---------------------------------"
   opkg install obexpush
+
   cp /media/card/BackupSHR/home/root/.navit/navit.xml /home/root/.navit/navit.xml
  mkdir /var/obexpush
+
 
    
 
    
 
   echo "SHR-PIS Install PIM Apps: Tasks and Dates"
 
   echo "SHR-PIS Install PIM Apps: Tasks and Dates"
 
   echo "-----------------------------------------"
 
   echo "-----------------------------------------"
   opkg install dates tasks
+
   opkg install opimd-utils
  opkg install http://www.opkg.org/packages/0_python-ldap_2.3.6_armv4t.ipk python-misc python-netclient python-netserver python-pycairo python-pygobject python-pygtk python-sqlite3 http://www.opkg.org/packages/1_python-vobject_0.8.1_armv4t.ipk http://www.opkg.org/packages/0_python-webdav_0.1.2_armv4t.ipk http://www.opkg.org/packages/1_python-gdata_1.3.0_armv4t.ipk http://www.opkg.org/packages/1_python-dateutil_1.4.1_armv4t.ipk http://www.opkg.org/packages/openldap_2.3.43_armv4t.ipk http://projects.openmoko.org/frs/download.php/841/pisi_0.3_armv4t.ipk
+
   opkg install pisi
  mkdir /media/card/pim
+
  ln -s /media/card/pim /home/root/pim
+
 
+
  echo "SHR-PIS MokoMaze"
+
  echo "----------------"
+
  opkg install mokomaze
+
 
+
  echo "SHR-PIS CellHunter"
+
  echo "------------------"
+
   opkg install cellhunter
+
  
 
===Copy and Execute Script===
 
===Copy and Execute Script===

Latest revision as of 15:55, 15 November 2009

Outdated warning ! This article or section is significantly outdated, either by significant hardware or software changes. Procedures mentioned in this page may well not work for current hardware/software.


[edit] SHR post-installation script

In the SHR User Manual there are mentioned some modifications that might help you to improve the features of you SHR distribution.

After flashing your Openmoko Freerunner you can do these modification manually like mentioned in the SHR User Manual or

  • modify on your desktop computer according your demands and
  • execute the following script on your Freerunnner.

The selected shell commands of the SHR User Manual are collected in a SHR post-installation so that you can transfer the script to your Freerunner via scp and execute it with sh. Please go through the script and check if the applications to be installed, are the selection that want you really want. If you do not understand, what is going on in the script, proceed with the SHR User Manual and select every documented step manually. If you understand the following script, it might save you some time.

Copy and paste the following lines and save them to a file called SHRpostinstallion.sh.

 #!/bin/sh
 echo "SHR (Lite) Post Installation Script" 
 echo "============================"
 echo "Version 1.2 - 12.11.2009"
 
 # vLANGUAGE="cz"
 vLANGUAGE="de"
 
 echo "SHR-PIS Update Navit Config Files"
 echo "---------------------------------"
 cp /media/card/BackupSHR/home/root/.navit/navit.xml /home/root/.navit/navit.xml
 
 echo "SHR-PIS Install PIM Apps: Tasks and Dates"
 echo "-----------------------------------------"
 opkg install opimd-utils
 opkg install pisi

[edit] Copy and Execute Script

Copy and paste the code into an editor of your choice (KDE kwrite or vi), save the file to SHRpostinstallation.sh and upload the file to your freerunner. Execute the shell script on you freerunner:

 desktop#
 scp SHRpostinstallation.sh root@192.168.0.202:/home/root/SHRpostinstallation.sh   

Start the shell script on you Freerunner with:

 neo# sh /home/root/SHRpostinstallation.sh

If you want to replace dropbear by openssh you have to start the script from the terminal on your FR and not via SSH, because the installation restarts the SSH daemon and the script will stop, if you start the script via SSH on your Freerunner from your desktop computer.

Personal tools
Outdated warning ! This article or section is significantly outdated, either by significant hardware or software changes. Procedures mentioned in this page may well not work for current hardware/software.


SHR post-installation script

In the SHR User Manual there are mentioned some modifications that might help you to improve the features of you SHR distribution.

After flashing your Openmoko Freerunner you can do these modification manually like mentioned in the SHR User Manual or

  • modify on your desktop computer according your demands and
  • execute the following script on your Freerunnner.

The selected shell commands of the SHR User Manual are collected in a SHR post-installation so that you can transfer the script to your Freerunner via scp and execute it with sh. Please go through the script and check if the applications to be installed, are the selection that want you really want. If you do not understand, what is going on in the script, proceed with the SHR User Manual and select every documented step manually. If you understand the following script, it might save you some time.

Copy and paste the following lines and save them to a file called SHRpostinstallion.sh.

 #!/bin/sh
 echo "SHR (Lite) Post Installation Script" 
 echo "============================"
 echo "Version 1.01 - 25.08.2009"
 
 # vLANGUAGE="cz"
 vLANGUAGE="de"
 
 echo "SHR-PIS Install Navit - Car Navigation"
 echo "--------------------------------------"
 echo "src navit http://download.navit-project.org/navit/openmoko/svn" > /etc/opkg/navit-feed.conf
 opkg update
 opkg install navit
 opkg install navit-locale-$vLANGUAGE
 mkdir /home/root/.navit
 echo "Navit: Solve libgps problem"
 opkg install libgps17
 ln -s /usr/lib/libgps.so.17 /usr/lib/libgps.so.16
  
 # Already done in version SHR 20090808:
 echo "SHR-PIS Install a Working Alarm Clock"
 echo "-------------------------------------"
 opkg remove -force-depends elementary-alarm
 opkg install ffalarms
 
 echo "SHR-PIS Install Bluetooth Package"
 echo "---------------------------------"
 opkg install obexpush
 mkdir /var/obexpush
 
 echo "SHR-PIS Install PIM Apps: Tasks and Dates"
 echo "-----------------------------------------"
 opkg install dates tasks
 opkg install http://www.opkg.org/packages/0_python-ldap_2.3.6_armv4t.ipk python-misc python-netclient python-netserver python-pycairo python-pygobject python-pygtk python-sqlite3 http://www.opkg.org/packages/1_python-vobject_0.8.1_armv4t.ipk http://www.opkg.org/packages/0_python-webdav_0.1.2_armv4t.ipk http://www.opkg.org/packages/1_python-gdata_1.3.0_armv4t.ipk http://www.opkg.org/packages/1_python-dateutil_1.4.1_armv4t.ipk http://www.opkg.org/packages/openldap_2.3.43_armv4t.ipk http://projects.openmoko.org/frs/download.php/841/pisi_0.3_armv4t.ipk
 mkdir /media/card/pim
 ln -s /media/card/pim /home/root/pim
  
 echo "SHR-PIS MokoMaze"
 echo "----------------"
 opkg install mokomaze
 
 echo "SHR-PIS CellHunter"
 echo "------------------"
 opkg install cellhunter

Copy and Execute Script

Copy and paste the code into an editor of your choice (KDE kwrite or vi), save the file to SHRpostinstallation.sh and upload the file to your freerunner. Execute the shell script on you freerunner:

 desktop#
 scp SHRpostinstallation.sh root@192.168.0.202:/home/root/SHRpostinstallation.sh   

Start the shell script on you Freerunner with:

 neo# sh /home/root/SHRpostinstallation.sh

If you want to replace dropbear by openssh you have to start the script from the terminal on your FR and not via SSH, because the installation restarts the SSH daemon and the script will stop, if you start the script via SSH on your Freerunner from your desktop computer.