[oe-commits] [openembedded-core] 44/68: wic: sdimage-bootpart: Use mmcblk0 drive instead of bogus mmcblk

git at git.openembedded.org git at git.openembedded.org
Mon Jan 28 17:07:43 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch thud-next
in repository openembedded-core.

commit a916a923dcd470a15d1136c818d77867e726600d
Author: Alexey Brodkin <alexey.brodkin at synopsys.com>
AuthorDate: Wed Jan 16 11:27:19 2019 +0300

    wic: sdimage-bootpart: Use mmcblk0 drive instead of bogus mmcblk
    
    Apparently either nobody ever used sdimage-bootpart.wks
    or fstab was kept untouched due to "--no-fstab-update" usage as
    some boards like IMX may have, see [1].
    
    Otherwise addition of the following line to the target's fstab:
    ---------------------->8-----------------
    /dev/mmcblkp1   /boot   vfat    defaults        0       0
    ---------------------->8-----------------
    
    gets us unusable target:
    ---------------------->8-----------------
    [*     ] A start job is running for dev-mmcblkp1.device (23s / 1min 30s)
    [ TIME ] Timed out waiting for device dev-mmcblkp1.device.
    [DEPEND] Dependency failed for /boot.
    [DEPEND] Dependency failed for Local File Systems.
    
    You are in emergency mode. After logging in, type "journalctl -xb" to view
    system logs, "systemctl reboot" to reboot, "systemctl default" or "exit"
    to boot into default mode.
    Press Enter for maintenance
    ---------------------->8-----------------
    
    Fix it with use of "mmcblk0" device name.
    
    [1] https://lists.yoctoproject.org/pipermail/meta-freescale/2018-February/022156.html
    
    (From OE-Core rev: 57a925dbd949e488980b02896106efd82bf47ed2)
    
    Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
    Cc: Maciej Borzecki <maciej.borzecki at open-rnd.pl>
    Cc: Maciek Borzecki <maciek.borzecki at gmail.com>
    Cc: Richard Purdie <richard.purdie at linuxfoundation.org>
    
    Signed-off-by: Alexey Brodkin <abrodkin at synopsys.com>
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 scripts/lib/wic/canned-wks/sdimage-bootpart.wks | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/lib/wic/canned-wks/sdimage-bootpart.wks b/scripts/lib/wic/canned-wks/sdimage-bootpart.wks
index 7ffd632..63bc4da 100644
--- a/scripts/lib/wic/canned-wks/sdimage-bootpart.wks
+++ b/scripts/lib/wic/canned-wks/sdimage-bootpart.wks
@@ -2,5 +2,5 @@
 # long-description: Creates a partitioned SD card image. Boot files
 # are located in the first vfat partition.
 
-part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4 --size 16
-part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4
+part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4 --size 16
+part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list