From 3df03abd435947653f5905a15e871317384da742 Mon Sep 17 00:00:00 2001 From: Jacek Bukarewicz Date: Tue, 25 Mar 2014 15:03:20 +0100 Subject: [PATCH] RD-PQ: Set fs mount options in ks file explicitly INSTALLERFW_PART${PART_NUM}_FSOPTS variable is used in RD-PQ post script that generates /etc/fstab. Mic used to set default value for INSTALLERFW_PART${PART_NUM}_FSOPTS environment variable if corresponding option (--fsoptions) was not set in the ks file. This has changed with version 0.24, hence the need for explicit --fsoptions. Change-Id: I1371f8dabc00ec6e36ae63e99fe0eb94809d61d1 Signed-off-by: Jacek Bukarewicz --- partitions/RD-PQ | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/partitions/RD-PQ b/partitions/RD-PQ index 29a7472..61d134e 100644 --- a/partitions/RD-PQ +++ b/partitions/RD-PQ @@ -1,6 +1,6 @@ # ROOT fs partition -part / --size=3000 --fstype=ext4 --label=platform --uuid=4f5fff4c-4d1e-11e3-b3c5-180373d78786 +part / --size=3000 --fstype=ext4 --label=platform --uuid=4f5fff4c-4d1e-11e3-b3c5-180373d78786 --fsoptions=defaults,noatime # DATA partition -part /opt/ --size=3000 --fstype=ext4 --label=data --uuid=4f602120-4d1e-11e3-a223-180373d78786 +part /opt/ --size=3000 --fstype=ext4 --label=data --uuid=4f602120-4d1e-11e3-a223-180373d78786 --fsoptions=defaults,noatime # UMS partition -part /opt/usr/ --size=3000 --fstype=ext4 --label=ums --uuid=4f603fca-4d1e-11e3-8f51-180373d78786 +part /opt/usr/ --size=3000 --fstype=ext4 --label=ums --uuid=4f603fca-4d1e-11e3-8f51-180373d78786 --fsoptions=defaults,noatime -- 2.7.4