Changes between Version 30 and Version 31 of provisioning
- Timestamp:
- 02/06/2025 06:37:56 PM (2 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
provisioning
v30 v31 60 60 2. Run a script that creates your partition table and partition contents from the partition tarballs, for example eMMC partition 1 (mmcblk2p1 on venice) 61 61 {{{ 62 # install the saved partition table 62 # create the partition table, ie start at 1MiB (2048 512byte blocks) and end at the extent of the device (adapt to your partitioning needs) 63 printf "2048,,L,,\n" | sudo sfdisk -uS /dev/mmcblk2 64 # or, install the saved partition table (not recommended as this requires the storage device size is identical to your original board) 63 65 dd if=/tmp/partition-table of=/dev/mmcblk2 64 # or create partition table, ie start at 1MiB (2048 512byte blocks) and end at the extent of the device65 printf "2048,,L,,\n" | sudo sfdisk -uS /dev/mmcblk266 66 # create an ext4 fs on partition 1 67 67 mkfs.ext4 -q -F -L rootfs /dev/mmcblk2p1