diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-06-07 18:32:07 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-06-07 18:32:07 +0000 |
commit | eb6aa209e58ba83571bcd1ed01cad7b171d38ba2 (patch) | |
tree | 4d0399396f12276b286d156d309046e769a4c840 /packages | |
parent | 3596eaa64f0fb0508bac711f6a45b6e77a120192 (diff) |
add fso-image-light, removing tools and audio (for now)
Diffstat (limited to 'packages')
-rw-r--r-- | packages/images/fso-image-light.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/images/fso-image-light.bb b/packages/images/fso-image-light.bb new file mode 100644 index 0000000000..921c636b12 --- /dev/null +++ b/packages/images/fso-image-light.bb @@ -0,0 +1,32 @@ +#------------------------------------------------------ +# freesmartphone.org Image Recipe, Light Edition +#------------------------------------------------------ + +require fso-image.bb + +IMAGE_LINGUAS = "" + +IMAGE_INSTALL = "\ + ${BASE_INSTALL} \ + ${X_INSTALL} \ + ${PYTHON_INSTALL} \ + ${ZHONE_INSTALL} \ +" + +inherit image + +# perform some convenience tweaks to the rootfs +mickey_rootfs_postprocess() { + curdir=$PWD + cd ${IMAGE_ROOTFS} + date "+%m%d%H%M%Y" >./etc/timestamp + echo "alias pico=nano" >>./etc/profile + echo "alias fso='cd /local/pkg/fso'" >>./etc/profile + 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 + cd $curdir +} + +ROOTFS_POSTPROCESS_COMMAND += "mickey_rootfs_postprocess" |