ADD_SUBDIRECTORY(include)
ADD_SUBDIRECTORY(tests)
ADD_SUBDIRECTORY(systemd)
-ADD_SUBDIRECTORY(scripts)
%define smack_domain System
%define bin_dir %TZ_SYS_BIN
%define rw_share_dir %TZ_SYS_SHARE
-%define upgrade_dir %TZ_SYS_RO_SHARE/upgrade
-%define upgrade_script_dir %{upgrade_dir}/scripts
-%define upgrade_data_dir %{upgrade_dir}/data
%prep
%setup -q
-DSYSTEMD_UNIT_DIR=%{_unitdir} \
-DCMAKE_BUILD_TYPE=%{build_type} \
-DRW_SHARE_DIR=%rw_share_dir \
- -DUPGRADE_DATA_DIR=%upgrade_data_dir \
- -DUPGRADE_SCRIPT_DIR=%upgrade_script_dir \
-DUSER_NAME=%user_name \
-DGROUP_NAME=%group_name \
-DSMACK_DOMAIN=%smack_domain \
%dir %attr(770, %user_name, %group_name) %{rw_share_dir}/wae/app_dek
%attr(660, %user_name, %group_name) %{rw_share_dir}/wae/app_dek/*
-%attr(775,root,root) %{upgrade_script_dir}/240.wae.sh
-%{upgrade_data_dir}/wae/app_dek/*
-
%files devel
%{_includedir}/*
%{_libdir}/pkgconfig/%{name}.pc
PERMISSIONS OWNER_READ
OWNER_WRITE
)
-
-INSTALL(FILES
- WAE_APPDEK_KEK_PublicKey.pem
- WAE_APPDEK_KEK_PrivateKey.pem
- DESTINATION ${UPGRADE_DATA_DIR}/wae/app_dek
- PERMISSIONS OWNER_READ
- OWNER_WRITE
-)
+++ /dev/null
-#!/bin/bash
-PATH=/bin:/usr/bin:/sbin:/usr/sbin
-
-# Copyright (c) 2016 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.
-#
-# @file 240.wae.sh.in
-# @author Kyungwook Tak (k.tak@samsung.com)
-# @brief Platform upgrade support
-
-WAE_DIR=@RW_SHARE_DIR@/wae
-
-cp -rf @UPGRADE_DATA_DIR@/wae $WAE_DIR
-
-chsmack -a "@SMACK_DOMAIN@" $WAE_DIR -r
-chown -R @USER_NAME@:@GROUP_NAME@ $WAE_DIR
-chmod 770 $WAE_DIR
-chmod 770 $WAE_DIR/app_dek
-chmod 660 $WAE_DIR/app_dek/*
+++ /dev/null
-# Copyright (c) 2016 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.
-#
-CONFIGURE_FILE(240.wae.sh.in 240.wae.sh @ONLY)
-INSTALL(FILES 240.wae.sh DESTINATION ${UPGRADE_SCRIPT_DIR})