aboutsummaryrefslogtreecommitdiffstats
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
commit953e8486362e29f50ea4f640dfc9c52c73862e30 (patch)
tree9b24b24f6325131e30d8945e31c1627cd10db400 /target/linux/x86_64/image/gen_image_generic.sh
parent50f2e5e8e4f32af4e1d3d1da66cc052a1d61723c (diff)
downloadupstream-953e8486362e29f50ea4f640dfc9c52c73862e30.tar.gz
upstream-953e8486362e29f50ea4f640dfc9c52c73862e30.tar.bz2
upstream-953e8486362e29f50ea4f640dfc9c52c73862e30.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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42936 3c298f89-4303-0410-b956-a3cf2f4a3e73
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))"