support 4 partitions for arm odroid u3 92/29392/1
authorChanho Park <chanho61.park@samsung.com>
Mon, 27 Oct 2014 08:13:14 +0000 (17:13 +0900)
committerChanho Park <chanho61.park@samsung.com>
Mon, 27 Oct 2014 08:13:14 +0000 (17:13 +0900)
This patch supports 4 partitions for arm odroid u3 which is reference
target of arm. Unlike tizen-2.2.1, we want to change partition maps of
arm target because platform.img/data.img/ums.img are really ambiguous from
developers. To clarify the partition name, we decide to change partition
names.

/boot: boot.img
/: rootfs.img
/opt: system-data.img
/opt/usr: user.img

Change-Id: I3208ee7404dcc6a5fd72c2e8af0fac67b7023af0
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
ks/common-minimal-4parts-armv7l.yaml [new file with mode: 0644]
ks/common-wayland-4parts-armv7l.yaml [new file with mode: 0644]
ks/common-x11-4parts-armv7l.yaml [new file with mode: 0644]
partitions/common-mbr-4parts-arm [new file with mode: 0644]

diff --git a/ks/common-minimal-4parts-armv7l.yaml b/ks/common-minimal-4parts-armv7l.yaml
new file mode 100644 (file)
index 0000000..284ca09
--- /dev/null
@@ -0,0 +1,11 @@
+Name: common-minimal-4parts-armv7l
+Architecture: armv7l
+Schedule: "*"
+Active: True
+Platform: Minimal
+Part: common-mbr-4parts-arm
+Mic2Options: -f loop --pack-to=@NAME@.tar.gz --copy-kernel
+FileName: common-minimal-4parts-armv7l
+Kernel: arm-odroidu3-linux-kernel
+Repos:
+    - common-wayland_armv7l
diff --git a/ks/common-wayland-4parts-armv7l.yaml b/ks/common-wayland-4parts-armv7l.yaml
new file mode 100644 (file)
index 0000000..dae464e
--- /dev/null
@@ -0,0 +1,11 @@
+Name: common-wayland-4parts-armv7l
+Architecture: armv7l
+Schedule: "*"
+Active: True
+Platform: Wayland
+Part: common-mbr-4parts
+Mic2Options: -f loop --pack-to=@NAME@.tar.gz --copy-kernel
+FileName: common-wayland-4parts-armv7l
+Kernel: arm-odroidu3-linux-kernel
+Repos:
+    - common-wayland_armv7l
diff --git a/ks/common-x11-4parts-armv7l.yaml b/ks/common-x11-4parts-armv7l.yaml
new file mode 100644 (file)
index 0000000..0d54741
--- /dev/null
@@ -0,0 +1,11 @@
+Name: common-x11-4parts-armv7l
+Architecture: armv7l
+Schedule: "*"
+Active: True
+Platform: X11
+Part: common-mbr-4parts
+Mic2Options: -f loop --pack-to=@NAME@.tar.gz --copy-kernel
+FileName: common-x11-4parts-armv7l
+Kernel: arm-odroidu3-linux-kernel
+Repos:
+    - common-x11_armv7l
diff --git a/partitions/common-mbr-4parts-arm b/partitions/common-mbr-4parts-arm
new file mode 100644 (file)
index 0000000..b0f896c
--- /dev/null
@@ -0,0 +1,4 @@
+part /boot --fstype="vfat" --size=64 --ondisk=mmcblk0 --active --label boot --fsoptions=defaults,noatime
+part / --fstype="ext4" --size=3500 --ondisk=mmcblk0 --label rootfs --fsoptions=defaults,noatime
+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