Add new command to manipulate the "cloned" flag 55/272355/6
authorSangYoun Kwak <sy.kwak@samsung.com>
Tue, 15 Mar 2022 07:23:25 +0000 (16:23 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Wed, 23 Mar 2022 02:46:50 +0000 (02:46 +0000)
Change-Id: I6dc81870f7769869f02b0dfaa6e2418179288ee2
Signed-off-by: SangYoun Kwak <sy.kwak@samsung.com>
packaging/deviced.spec
tools/board/CMakeLists.txt
tools/board/clear-partition-ab-cloned.c [new file with mode: 0644]
tools/board/get-partition-ab-cloned.c [new file with mode: 0644]
tools/board/set-partition-ab-cloned.c [new file with mode: 0644]

index 9a31220..595f28f 100644 (file)
@@ -316,10 +316,13 @@ mv %{_libdir}/iot-headless-battery.so %{_libdir}/deviced/battery.so
 #if #{?usb_module} == on ==> always on
 %{_bindir}/direct_set_debug.sh
 %{TZ_SYS_DUMPGEN}/dump_pmstate_log.sh
-%attr(2551,root,root) %{_bindir}/device_board_switch_partition
 %attr(2551,root,root) %{_bindir}/device_board_set_boot_success
 %attr(2551,root,root) %{_bindir}/device_board_clear_boot_mode
 %attr(2551,root,root) %{_bindir}/device_board_get_boot_mode
+%attr(2551,root,root) %{_bindir}/device_board_switch_partition
+%attr(2551,root,root) %{_bindir}/device_board_set_partition_ab_cloned
+%attr(2551,root,root) %{_bindir}/device_board_clear_partition_ab_cloned
+%attr(2551,root,root) %{_bindir}/device_board_get_partition_ab_cloned
 #endif
 
 %files auto-test
index 2ac7eab..1ebb56e 100644 (file)
@@ -15,7 +15,11 @@ MACRO(ADD_BOOT_EXECUTABLE BINARY_NAME SRCS)
        INSTALL(TARGETS ${BINARY_NAME} DESTINATION bin)
 ENDMACRO()
 
-ADD_BOOT_EXECUTABLE(device_board_switch_partition switch-partition.c)
 ADD_BOOT_EXECUTABLE(device_board_set_boot_success set-boot-success.c)
 ADD_BOOT_EXECUTABLE(device_board_clear_boot_mode clear-boot-mode.c)
 ADD_BOOT_EXECUTABLE(device_board_get_boot_mode get-boot-mode.c)
+
+ADD_BOOT_EXECUTABLE(device_board_switch_partition switch-partition.c)
+ADD_BOOT_EXECUTABLE(device_board_clear_partition_ab_cloned clear-partition-ab-cloned.c)
+ADD_BOOT_EXECUTABLE(device_board_get_partition_ab_cloned get-partition-ab-cloned.c)
+ADD_BOOT_EXECUTABLE(device_board_set_partition_ab_cloned set-partition-ab-cloned.c)
diff --git a/tools/board/clear-partition-ab-cloned.c b/tools/board/clear-partition-ab-cloned.c
new file mode 100644 (file)
index 0000000..36425fa
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * device-board-get-boot-mode
+ *
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <hal/device/hal-board.h>
+
+int main(int argc, char *argv[])
+{
+       return hal_device_board_clear_partition_ab_cloned();
+}
diff --git a/tools/board/get-partition-ab-cloned.c b/tools/board/get-partition-ab-cloned.c
new file mode 100644 (file)
index 0000000..fb55772
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * device-board-get-boot-mode
+ *
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <stdio.h>
+#include <hal/device/hal-board.h>
+
+int main(int argc, char *argv[])
+{
+       int cloned;
+       int ret;
+
+       ret = hal_device_board_get_partition_ab_cloned(&cloned);
+       if (ret == 0)
+               printf("%d", cloned);
+
+       return ret;
+}
diff --git a/tools/board/set-partition-ab-cloned.c b/tools/board/set-partition-ab-cloned.c
new file mode 100644 (file)
index 0000000..7bbc906
--- /dev/null
@@ -0,0 +1,25 @@
+/*
+ * device-board-get-boot-mode
+ *
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <hal/device/hal-board.h>
+
+int main(int argc, char *argv[])
+{
+       return hal_device_board_set_partition_ab_cloned();
+}