diff options
author | Peter A. Bigot <pab@pabigot.com> | 2018-03-07 11:17:57 -0600 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2018-03-07 23:35:18 +0000 |
commit | 0e1e2c6e0aebab8a7536f81dc25f50c0f2f6d518 (patch) | |
tree | bd80ad7d3f8de9e038226a5e540ef1db25d8d66e | |
parent | 207efc6fcfb4279b50abf82189dca31a099997c2 (diff) | |
download | meta-raspberrypi-0e1e2c6e0aebab8a7536f81dc25f50c0f2f6d518.tar.gz |
sdimage-raspberrypi.wks: find /boot partition on mmcblk0
Recently wic was modified to no longer exclude /boot from partitions
added to fstab. The --on parameter in many kickstart specifications
insufficiently resolved the MMC device, resulting in attempts to mount
/dev/mmcblkp1 as boot when the device should be /dev/mmcblk0p1.
With systemd the mount failure is an error and the system drops into
emergency mode.
Signed-off-by: Peter A. Bigot <pab@pabigot.com>
-rw-r--r-- | wic/sdimage-raspberrypi.wks | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wic/sdimage-raspberrypi.wks b/wic/sdimage-raspberrypi.wks index 353daac..01fbaea 100644 --- a/wic/sdimage-raspberrypi.wks +++ b/wic/sdimage-raspberrypi.wks | |||
@@ -2,5 +2,5 @@ | |||
2 | # long-description: Creates a partitioned SD card image for use with | 2 | # long-description: Creates a partitioned SD card image for use with |
3 | # Raspberry Pi. Boot files are located in the first vfat partition. | 3 | # Raspberry Pi. Boot files are located in the first vfat partition. |
4 | 4 | ||
5 | part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 20 | 5 | part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4096 --size 20 |
6 | part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096 | 6 | part / --source rootfs --ondisk mmcblk0 --fstype=ext4 --label root --align 4096 |