
replace-partition ----------------- A standalone element which consumes a base image which was created with ``diskimage-builder`` and rebuilds it without making any packaging changes. This allows the image contents to be copied to a new block device layout. Use cases for this element include: * Rebuilding a whole-disk image with a different partition layout by setting ``DIB_BLOCK_DEVICE_CONFIG`` * Rebuilding a whole-disk image with the same partitions but with the sector size increased to 4096 bytes replace-partition-redhat ------------------------ A redhat family specific version of the ``replace-partition`` element. Change-Id: I7399c4bf6a4d6acfef43f871df0a40e2961ed44e
12 lines
322 B
Bash
12 lines
322 B
Bash
if [ -z "${DISTRO_NAME:-}" ]; then
|
|
echo "DISTRO_NAME is not set! Can not continue"
|
|
exit 1
|
|
fi
|
|
export DIB_RELEASE=${DIB_RELEASE:-9}
|
|
if [[ $DISTRO_NAME =~ "rhel" ]]; then
|
|
export EFI_BOOT_DIR="EFI/redhat"
|
|
else
|
|
export EFI_BOOT_DIR="EFI/$DISTRO_NAME"
|
|
fi
|
|
export DIB_BLOCK_DEVICE=efi
|
|
export DIB_INIT_SYSTEM=systemd |