On Tue, Apr 5, 2011 at 4:56 PM, Rusty Lynch <[email protected]> wrote: > Just realized we are still using a work around in the image creation > process. There is a bug for Qt Mobility bug for this, but I don't recall > the number so cc'ing Iain for the answer.
I accidentally ran into this note while looking for something else, and realized it was the re-solution of a problem that happened ever since I upgraded my MeeGoConf ExoPC tablet to a more recent build of MeeGo 1.2 ( 1.2.0.90/1.2.0.90.11.20110728.1 currently). So as not to forget again, I've added it to the roster of re-fixing I do on each update. This one gets meego-app-camera and the qtmobility demo camera application working again, so I thought I'd share the solution. From my script 'post-fix' which I run after "zypper dup --from 'MeeGo:1.2:non-oss (MeeGo_1.2)' --from 'MeeGo:1.2:oss (standard)'" .............. #!/bin/bash sudo zypper in --force hunspell-1.2.12-1.fc14 ## https://bugs.meego.com/show_bug.cgi?id=16879 sudo zypper in http://download.meego.com/live/devel:/ux:/handset/Trunk_Testing/i586/meegotouch-inputmethodbridges-0.2.3-7.6.i586.rpm ## http://bugs.meego.com/show_bug.cgi?id=18619 ## From http://lists.meego.com/pipermail/meego-dev/2011-April/482507.html ## #> Just realized we are still using a work around in the image creation #> process. There is a bug for Qt Mobility bug for this, but I don't recall #> the number so cc'ing Iain for the answer. #> #> But... the gst camera bin doesn't play nicely with the Qt Mobility Video #> widget. In the ks file we: #> rm /usr/lib/gstreamer-0.10/libgstcamerabin.so #> #> ... which means on each update the file comes back (which is how i #> remembered since i just did a massive Trunk:Testing update and the camera #> app stopped working.) sudo mv /usr/lib/gstreamer-0.10/libgstcamerabin.so /usr/lib/gstreamer-0.10/libgstcamerabin.so.bak ## Incase the browser gets updated, link it back to firefox. ## where chromium-browser.sh is a simple wrapper ### #!/bin/sh ### exec firefox $* sudo rm /usr/bin/chromium-browser sudo ln /usr/bin/chromium-browser.sh /usr/bin/chromium-browser echo =========== CHECKING FOR RPMSAVES AND RPMNEWS... ============== sudo find /etc -name '*.rpmsave' -exec ls -l {} \; sudo find /etc -name '*.rpmnew' -exec ls -l {} \; echo =========== CHECKING FOR RPMSAVES AND RPMNEWS... DONE. ========= ............... #!/bin/bash sudo rm -f /etc/prelink.cache sudo /etc/cron.daily/prelink sudo rm -f /etc/readahead.packed sudo /etc/init.d/sreadahead-pack start ............... -- Niels http://nielsmayer.com _______________________________________________ MeeGo-dev mailing list [email protected] http://lists.meego.com/listinfo/meego-dev http://wiki.meego.com/Mailing_list_guidelines
