Merge lp:~xnox/ubuntu/saucy/initramfs-tools-ubuntu-touch/emulator into lp:ubuntu/saucy/initramfs-tools-ubuntu-touch

Proposed by Dimitri John Ledkov
Status: Merged
Merged at revision: 55
Proposed branch: lp:~xnox/ubuntu/saucy/initramfs-tools-ubuntu-touch/emulator
Merge into: lp:ubuntu/saucy/initramfs-tools-ubuntu-touch
Diff against target: 27 lines (+9/-0)
2 files modified
debian/changelog (+8/-0)
scripts/touch (+1/-0)
To merge this branch: bzr merge lp:~xnox/ubuntu/saucy/initramfs-tools-ubuntu-touch/emulator
Reviewer Review Type Date Requested Status
Oliver Grawert Pending
Ubuntu Development Team Pending
Review via email: mp+188398@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Oliver Grawert (ogra) wrote :

wil try to land this in one of tomorrows images, thanks for the bugfix !

Revision history for this message
Dimitri John Ledkov (xnox) wrote :

Please hold this, I'd like to integrate tarball unpacking.

Revision history for this message
Dimitri John Ledkov (xnox) wrote :

Actually ext4 doesn't behave that well on mtd, therefore i'll use mmc/sdcard as rootfs (userdata). And I'll reuse one of the existing labels that our initramfs is looking for (USERDATA). Therefore the only thing that is left is the readlink bug fix.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2013-09-26 17:55:27 +0000
3+++ debian/changelog 2013-10-01 12:06:29 +0000
4@@ -1,3 +1,11 @@
5+initramfs-tools-ubuntu-touch (0.51) UNRELEASED; urgency=low
6+
7+ * Skip calling readlink with empty $part, when partition from in
8+ partlist loop is not found, thus avoiding busybox help output printed
9+ on the console.
10+
11+ -- Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> Mon, 30 Sep 2013 18:11:32 +0100
12+
13 initramfs-tools-ubuntu-touch (0.50) saucy; urgency=low
14
15 * Add a new "synced" mode to writable-paths which will automatically copy
16
17=== modified file 'scripts/touch'
18--- scripts/touch 2013-09-26 17:55:27 +0000
19+++ scripts/touch 2013-10-01 12:06:29 +0000
20@@ -58,6 +58,7 @@
21 # find the right partition
22 for partname in $partlist; do
23 part=$(find /dev -name $partname|tail -1)
24+ [ -z "$part" ] && continue
25 path=$(readlink -f $part)
26 [ -n "$path" ] && break
27 done

Subscribers

People subscribed via source and target branches