summaryrefslogtreecommitdiffstats
path: root/target/linux/x86_64/image/gen_image_generic.sh
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-10-16 16:28:16 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-10-16 16:28:16 +0000
commit299c8c32914723c488c60471b43be39abda4ab1e (patch)
tree594ec6de5858439d3d2e19f26ce9a32ddea88e30 /target/linux/x86_64/image/gen_image_generic.sh
parentcc97eaff10d02be5e467ff190934589029620339 (diff)
downloadmaster-31e0f0ae-299c8c32914723c488c60471b43be39abda4ab1e.tar.gz
master-31e0f0ae-299c8c32914723c488c60471b43be39abda4ab1e.tar.bz2
master-31e0f0ae-299c8c32914723c488c60471b43be39abda4ab1e.zip
x86_64: initial support for PARTUUID
This change configures grub to mount the rootfs by PARTUUID instead of the device path if CONFIG_TARGET_ROOTFS_PARTNAME is unset. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 42936
Diffstat (limited to 'target/linux/x86_64/image/gen_image_generic.sh')
-rwxr-xr-xtarget/linux/x86_64/image/gen_image_generic.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/x86_64/image/gen_image_generic.sh b/target/linux/x86_64/image/gen_image_generic.sh
index b4bf901fb4..711c755cf9 100755
--- a/target/linux/x86_64/image/gen_image_generic.sh
+++ b/target/linux/x86_64/image/gen_image_generic.sh
@@ -20,7 +20,7 @@ sect=63
cyl=$(( ($KERNELSIZE + $ROOTFSSIZE) * 1024 * 1024 / ($head * $sect * 512)))
# create partition table
-set `ptgen -o "$OUTPUT" -h $head -s $sect -p ${KERNELSIZE}m -p ${ROOTFSSIZE}m ${ALIGN:+-l $ALIGN}`
+set `ptgen -o "$OUTPUT" -h $head -s $sect -p ${KERNELSIZE}m -p ${ROOTFSSIZE}m ${ALIGN:+-l $ALIGN} ${SIGNATURE:+-S 0x$SIGNATURE}`
KERNELOFFSET="$(($1 / 512))"
KERNELSIZE="$(($2 / 512))"