RD-PQ: Set fs mount options in ks file explicitly 43/18543/1 submit/tizen/20140401.101017
authorJacek Bukarewicz <j.bukarewicz@samsung.com>
Tue, 25 Mar 2014 14:03:20 +0000 (15:03 +0100)
committerJacek Bukarewicz <j.bukarewicz@samsung.com>
Tue, 25 Mar 2014 14:03:20 +0000 (15:03 +0100)
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 <j.bukarewicz@samsung.com>
partitions/RD-PQ

index 29a7472..61d134e 100644 (file)
@@ -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