[maemo-commits] [maemo-commits] r9530 - in projects/haf/tags/osso-af-startup/1.31-1fix2: debian services
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Feb 1 17:42:10 EET 2007
- Previous message: [maemo-commits] r9529 - projects/haf/hafbuildbot
- Next message: [maemo-commits] r9531 - in projects/haf/trunk/hildon-home-webshortcut: . plugin
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: kihamala Date: 2007-02-01 17:42:09 +0200 (Thu, 01 Feb 2007) New Revision: 9530 Modified: projects/haf/tags/osso-af-startup/1.31-1fix2/debian/changelog projects/haf/tags/osso-af-startup/1.31-1fix2/debian/postinst projects/haf/tags/osso-af-startup/1.31-1fix2/services/after-suw-process-restart.sh Log: adding restarting of osso-hss Modified: projects/haf/tags/osso-af-startup/1.31-1fix2/debian/changelog =================================================================== --- projects/haf/tags/osso-af-startup/1.31-1fix2/debian/changelog 2007-02-01 15:34:55 UTC (rev 9529) +++ projects/haf/tags/osso-af-startup/1.31-1fix2/debian/changelog 2007-02-01 15:42:09 UTC (rev 9530) @@ -1,3 +1,10 @@ +osso-af-startup (1.31-1fix2) unstable; urgency=low + + * UNRELEASED + * Added restarting of osso_hss for the first boot. Fixes: NB#51024 + + -- Kimmo Hämäläinen <kimmo.hamalainen at nokia.com> Thu, 01 Feb 2007 17:36:25 +0200 + osso-af-startup (1.31-1fix) unstable; urgency=low * Now setting kernel to flush buffers to memory cards more easily. Modified: projects/haf/tags/osso-af-startup/1.31-1fix2/debian/postinst =================================================================== --- projects/haf/tags/osso-af-startup/1.31-1fix2/debian/postinst 2007-02-01 15:34:55 UTC (rev 9529) +++ projects/haf/tags/osso-af-startup/1.31-1fix2/debian/postinst 2007-02-01 15:42:09 UTC (rev 9530) @@ -69,4 +69,6 @@ add_sudoer 'user ALL = NOPASSWD: /etc/init.d/ke-recv stop' add_sudoer 'user ALL = NOPASSWD: /etc/init.d/alarmd start' add_sudoer 'user ALL = NOPASSWD: /etc/init.d/alarmd stop' +add_sudoer 'user ALL = NOPASSWD: /etc/init.d/osso-hss start' +add_sudoer 'user ALL = NOPASSWD: /etc/init.d/osso-hss stop' Modified: projects/haf/tags/osso-af-startup/1.31-1fix2/services/after-suw-process-restart.sh =================================================================== --- projects/haf/tags/osso-af-startup/1.31-1fix2/services/after-suw-process-restart.sh 2007-02-01 15:34:55 UTC (rev 9529) +++ projects/haf/tags/osso-af-startup/1.31-1fix2/services/after-suw-process-restart.sh 2007-02-01 15:42:09 UTC (rev 9530) @@ -26,6 +26,11 @@ if [ -x $DIR/osso-media-server.sh ]; then $DIR/osso-media-server.sh stop fi + +if [ -x /etc/init.d/osso-hss ]; then + sudo /etc/init.d/osso-hss stop +fi + # this is first boot, so VKB is running if [ -f $DIR/keyboard.defs ]; then source $DIR/keyboard.defs @@ -55,6 +60,10 @@ if [ -x $DIR/osso-media-server.sh ]; then $DIR/osso-media-server.sh start & fi +if [ -x /etc/init.d/osso-hss ]; then + sudo /etc/init.d/osso-hss start +fi + if [ -x $DIR/osso-connectivity-ui.sh ]; then source $DIR/osso-connectivity-ui.sh start fi
- Previous message: [maemo-commits] r9529 - projects/haf/hafbuildbot
- Next message: [maemo-commits] r9531 - in projects/haf/trunk/hildon-home-webshortcut: . plugin
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]