summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunghoon Kim <jhoon20.kim@samsung.com>2020-08-10 15:47:52 +0900
committerJunghoon Kim <jhoon20.kim@samsung.com>2020-08-10 15:47:52 +0900
commit93149af4a2374717873edda967caf8da2dcb52fe (patch)
tree906395954241bff0eb1a7bcd684673190863d4de
parent2b8de33dfbea2b5ef79aaa70eb2da8ae118d087e (diff)
downloadmeta-93149af4a2374717873edda967caf8da2dcb52fe.tar.gz
meta-93149af4a2374717873edda967caf8da2dcb52fe.tar.bz2
meta-93149af4a2374717873edda967caf8da2dcb52fe.zip
[TRE-2528] Request to change the rootfs filesystemsubmit/tizen/20200810.075452accepted/tizen/unified/20200810.122949
Request to use the BTRFS as the rootfs filesystem for the IoT headed RPI 64bit image. Change-Id: I5ac964ac5a7ffe4093d291559f570284fb446a6a Signed-off-by: Junghoon Kim <jhoon20.kim@samsung.com>
-rw-r--r--ks/iot-headed-3parts-aarch64-rpi.yaml2
-rw-r--r--partitions/btrfs-rootfs-3parts-ramdisk-recovery5
2 files changed, 6 insertions, 1 deletions
diff --git a/ks/iot-headed-3parts-aarch64-rpi.yaml b/ks/iot-headed-3parts-aarch64-rpi.yaml
index 25097c5..4329411 100644
--- a/ks/iot-headed-3parts-aarch64-rpi.yaml
+++ b/ks/iot-headed-3parts-aarch64-rpi.yaml
@@ -3,7 +3,7 @@ Architecture: aarch64
Schedule: "*"
Active: True
Platform: Tizen IoT
-Part: common-3parts-ramdisk-recovery
+Part: btrfs-rootfs-3parts-ramdisk-recovery
Mic2Options: -A aarch64 -f loop --pack-to=@NAME@.tar.gz
FileName: iot-headed-3parts-aarch64-rpi
Repos:
diff --git a/partitions/btrfs-rootfs-3parts-ramdisk-recovery b/partitions/btrfs-rootfs-3parts-ramdisk-recovery
new file mode 100644
index 0000000..6cdc7e4
--- /dev/null
+++ b/partitions/btrfs-rootfs-3parts-ramdisk-recovery
@@ -0,0 +1,5 @@
+part / --fstype="btrfs" --size=1024 --ondisk=mmcblk0 --label rootfs --fsoptions=defaults,noatime,compress-force=lzo
+part /opt --fstype="ext4" --size=512 --ondisk=mmcblk0 --label system-data --fsoptions=defaults,noatime
+part /opt/usr --fstype="ext4" --size=3500 --ondisk=mmcblk0 --label user --fsoptions=defaults,noatime
+part /mnt/initrd --size=8 --ondisk mmcblk0p --fstype=ext4 --label=ramdisk --extoptions="-b 1024 -O ^has_journal"
+part /mnt/initrd-recovery --size=32 --ondisk mmcblk0p --fstype=ext4 --label=ramdisk-recovery --extoptions="-b 1024 -O ^has_journal"