e4e23897a1
This patch finalizes the block device refactoring. It moves the three remaining levels (filesystem creation, mount and fstab handling) into the new python module. Now it is possible to use any number of disk images, any number of partitions and used them mounted to different directories. Notes: * unmount_dir : modified to only unmount the subdirs mounted by mount_proc_sys_dev(). dib-block-device unmounts $TMP_MOUNT_PATH/mnt (see I85e01f3898d3c043071de5fad82307cb091a64a9) Change-Id: I592c0b1329409307197460cfa8fd69798013f1f8 Signed-off-by: Andreas Florath <andreas@florath.net> Closes-Bug: #1664924
37 lines
962 B
YAML
37 lines
962 B
YAML
# Default block device setup for PPC
|
|
# ----------------------------------
|
|
#
|
|
# Details (extracted from [1])
|
|
#
|
|
# Power Firmware (OFW) scans chosen (nvram value boot-device) device,
|
|
# for either PReP* partition or vfat.
|
|
#
|
|
# PReP is raw and small (8M max) partition which caries only stage1
|
|
# binary.
|
|
# msdos partition table:
|
|
# - PReP partition have 0x41 type (must be active)
|
|
# - PReP partition must have boot flag set
|
|
#
|
|
# [1] https://www.ibm.com/developerworks/community/wikis/home?lang=en#!/wiki/W51a7ffcf4dfd_4b40_9d82_446ebc23c550/page/PowerLinux%20Boot%20howto
|
|
|
|
- local_loop:
|
|
name: image0
|
|
|
|
- partitioning:
|
|
base: image0
|
|
label: mbr
|
|
partitions:
|
|
- name: boot
|
|
flags: [ boot, primary ]
|
|
type: '0x41'
|
|
size: 8MiB
|
|
- name: root
|
|
flags: [ primary ]
|
|
size: 100%
|
|
mkfs:
|
|
mount:
|
|
mount_point: /
|
|
fstab:
|
|
options: "defaults"
|
|
fsck-passno: 1
|