Merge lp:~didrocks/ubuntustudio-look/new-systemd-fsck into lp:~ubuntustudio-core/+junk/look

Proposed by Didier Roche-Tolomelli
Status: Merged
Merged at revision: 165
Proposed branch: lp:~didrocks/ubuntustudio-look/new-systemd-fsck
Merge into: lp:~ubuntustudio-core/+junk/look
Diff against target: 46 lines (+20/-2)
2 files modified
debian/changelog (+8/-1)
lib/plymouth/themes/ubuntustudio-logo/mdv.script (+12/-1)
To merge this branch: bzr merge lp:~didrocks/ubuntustudio-look/new-systemd-fsck
Reviewer Review Type Date Requested Status
Kaj Ailomaa (community) Approve
Review via email: mp+250908@code.launchpad.net

Description of the change

Adding fsck support with systemd. Uploaded to vivid.
(you should be able to pull/push that branch directly)

Aside note: can you please make sure that your branch is writable for people having upload rights to your packages? All other teams and flavors and ensuring this. Thanks!

To post a comment you must log in.
Revision history for this message
Kaj Ailomaa (zequence) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2014-03-18 09:00:57 +0000
+++ debian/changelog 2015-02-25 12:14:23 +0000
@@ -1,4 +1,11 @@
1ubuntustudio-look (0.48) UNRELEASED; urgency=low1ubuntustudio-look (0.49) vivid; urgency=medium
2
3 * Add fsck report and cancel support with systemd to the logo theme
4 (LP: #1425434)
5
6 -- Didier Roche <didrocks@ubuntu.com> Wed, 25 Feb 2015 13:09:27 +0100
7
8ubuntustudio-look (0.48) trusty; urgency=low
29
3 * Made wallpapers selectable from both XFCE and Gnome based DEs10 * Made wallpapers selectable from both XFCE and Gnome based DEs
4 (lp: #1292550)11 (lp: #1292550)
512
=== modified file 'lib/plymouth/themes/ubuntustudio-logo/mdv.script'
--- lib/plymouth/themes/ubuntustudio-logo/mdv.script 2011-01-25 02:58:53 +0000
+++ lib/plymouth/themes/ubuntustudio-logo/mdv.script 2015-02-25 12:14:23 +0000
@@ -1,5 +1,12 @@
1# Ubuntu Studio Plymouth theme1# Ubuntu Studio Plymouth theme
22
3fun strlen (string) {
4 i = 0;
5 while (String(string).CharAt(i))
6 i++;
7 return i;
8}
9
3Window.GetMaxWidth = fun (){10Window.GetMaxWidth = fun (){
4 i = 0;11 i = 0;
5 width = 0;12 width = 0;
@@ -193,7 +200,11 @@
193200
194fun display_message_callback (prompt)201fun display_message_callback (prompt)
195 {202 {
196 203
204# Get the message without the "fsckd-cancel-msg" prefix as we don't support i18n
205if (prompt.SubString(0, 17) == "fsckd-cancel-msg:")
206 prompt = prompt.SubString(17, strlen(prompt));
207
197prompt = Image.Text(prompt,1.0, 1.0, 1.0);208prompt = Image.Text(prompt,1.0, 1.0, 1.0);
198sprite_prompt.SetImage(prompt);209sprite_prompt.SetImage(prompt);
199sprite_prompt.SetPosition(Window.GetX() + (Window.GetWidth() - prompt.GetWidth()) / 2, Window.GetY() + Window.GetHeight() * 0.93, 2);210sprite_prompt.SetPosition(Window.GetX() + (Window.GetWidth() - prompt.GetWidth()) / 2, Window.GetY() + Window.GetHeight() * 0.93, 2);

Subscribers

People subscribed via source and target branches

to all changes: