diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-07-27 17:44:02 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-07-27 17:44:02 +0000 |
commit | f6df43ad54171f885cbf106f8dfa53ad5b4342f6 (patch) | |
tree | d206e9fe7ca0b01550f914791bd0c990b2518a54 /packages/images/fso-image.bb | |
parent | 1b5a0cc2e6ed2ace27e9281e41ee87073bbf9604 (diff) | |
parent | 62bbacd3d6c36d909054b02a9709c172fae75076 (diff) |
merge of '953ae6dd8d43a51ab7e93b1157fbb67ba0c6b42b'
and 'a7a11fde4813257fd795ba98b5cfa99942623f8c'
Diffstat (limited to 'packages/images/fso-image.bb')
-rw-r--r-- | packages/images/fso-image.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/images/fso-image.bb b/packages/images/fso-image.bb index 8c9d56adbc..f1b9104b87 100644 --- a/packages/images/fso-image.bb +++ b/packages/images/fso-image.bb @@ -64,6 +64,13 @@ AUDIO_INSTALL = "\ fso-sounds \ " +GTK_INSTALL = "\ + openmoko-calculator2 \ + openmoko-terminal2 \ + gpe-scap \ + tangogps \ +" + # FIXME these should rather be part of alsa-state, # once Om stabilizes them... AUDIO_INSTALL_append_om-gta01 = "\ @@ -90,6 +97,7 @@ ZHONE_INSTALL = "\ IMAGE_INSTALL = "\ ${BASE_INSTALL} \ ${X_INSTALL} \ + ${GTK_INSTALL} \ ${AUDIO_INSTALL} \ ${TOOLS_INSTALL} \ ${PYTHON_INSTALL} \ @@ -102,14 +110,25 @@ inherit image fso_rootfs_postprocess() { curdir=$PWD cd ${IMAGE_ROOTFS} + # date/time date "+%m%d%H%M%Y" >./etc/timestamp + # alias foo echo "alias pico=nano" >>./etc/profile echo "alias fso='cd /local/pkg/fso'" >>./etc/profile echo "alias ipkg='opkg'" >>./etc/profile + # nfs mkdir -p ./local/pkg echo >>./etc/fstab echo "# NFS Host" >>./etc/fstab echo "192.168.0.200:/local/pkg /local/pkg nfs noauto,nolock,soft,rsize=32768,wsize=32768 0 0" >>./etc/fstab + # fix .desktop files for illume + desktop=`find ./usr/share/applications -name "*.desktop"` + for file in $desktop; do + echo "Categories=Office;" >>$file + done + # minimal gtk theme foo + mkdir -p ./etc/gtk-2.0/ + echo 'gtk-font-name = "Sans 5"' >> ./etc/gtk-2.0/gtkrc cd $curdir } |