diff options
author | Yunhee Seo <yuni.seo@samsung.com> | 2024-06-12 19:59:19 +0900 |
---|---|---|
committer | Yunhee Seo <yuni.seo@samsung.com> | 2024-06-12 20:07:36 +0900 |
commit | 79c83d3b46902b68fd38ef386f9eaba0f77f6f3f (patch) | |
tree | 4d2a4f920d794b82b58fb4dceebc6fbc61cf6635 | |
parent | 474538c047dfa551ff32c24e9ad30db608e38415 (diff) | |
download | device-tm1-79c83d3b46902b68fd38ef386f9eaba0f77f6f3f.tar.gz device-tm1-79c83d3b46902b68fd38ef386f9eaba0f77f6f3f.tar.bz2 device-tm1-79c83d3b46902b68fd38ef386f9eaba0f77f6f3f.zip |
Remove CMakeListstizen
In the tizen platform 9.0 image, device-tm1 is not supported anymore.
Thus, this package should be removed from building list.
Before deleting from the build target, CMake file is removed temporarily.
Change-Id: I92fca36800ce4297f70d2819faaf849b49759945
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
-rw-r--r-- | CMakeLists.txt | 25 | ||||
-rw-r--r-- | packaging/hal-backend-device-tm1.spec | 44 |
2 files changed, 0 insertions, 69 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index d2e3009..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,25 +0,0 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 2.6) -PROJECT(hal-backend-device-tm1 C) - -SET(CMAKE_VERBOSE_MAKEFILE OFF) - -SET(PREFIX ${CMAKE_INSTALL_PREFIX}) - -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -Wall -Werror") - -IF(ENABLE_DLOG STREQUAL on) - ADD_DEFINITIONS("-DFEATURE_DLOG") -ENDIF() - -INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.Apache-2.0 DESTINATION ${HAL_LICENSE_DIR}/${PROJECT_NAME}) - -ADD_SUBDIRECTORY(hw/battery) -ADD_SUBDIRECTORY(hw/display) -ADD_SUBDIRECTORY(hw/led) -ADD_SUBDIRECTORY(hw/external_connection) -ADD_SUBDIRECTORY(hw/touchscreen) -ADD_SUBDIRECTORY(hw/ir) -ADD_SUBDIRECTORY(hw/thermal) -ADD_SUBDIRECTORY(hw/board) -ADD_SUBDIRECTORY(hw/haptic) -ADD_SUBDIRECTORY(hw/memory) diff --git a/packaging/hal-backend-device-tm1.spec b/packaging/hal-backend-device-tm1.spec index 735814e..cff8201 100644 --- a/packaging/hal-backend-device-tm1.spec +++ b/packaging/hal-backend-device-tm1.spec @@ -7,50 +7,6 @@ License: Apache-2.0 Source0: %{name}-%{version}.tar.gz Source1: %{name}.manifest ExclusiveArch: %{arm} aarch64 -Requires(post): /sbin/ldconfig -Requires(postun): /sbin/ldconfig -BuildRequires: cmake -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(hal-api-common) -BuildRequires: pkgconfig(hal-api-device) -BuildRequires: pkgconfig(libsyscommon) -BuildRequires: pkgconfig(hal-backend-device-common) %description Device HAL backend drivers for TM1 targets - -%prep -%setup -q -cp %{SOURCE1} . - -%build -%cmake \ - -DCMAKE_INSTALL_PREFIX=%{_prefix} \ - -DHAL_LIB_DIR=%{_hal_libdir} \ - -DHAL_LICENSE_DIR=%{_hal_licensedir} \ - -DENABLE_DLOG=on - -make %{?jobs:-j%jobs} - -%install -rm -rf %{buildroot} - -# install conf files -mkdir -p %{buildroot}%{_hal_sysconfdir}/deviced -install -m 644 conf/*.conf %{buildroot}%{_hal_sysconfdir}/deviced - -mkdir -p %{buildroot}%{_prefix}/lib/udev/rules.d -install -m 644 rules/61-video.rules %{buildroot}%{_prefix}/lib/udev/rules.d - -%make_install - -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - -%files -%{_hal_libdir}/*.so* -%manifest %{name}.manifest -%{_hal_licensedir}/%{name}/LICENSE.Apache-2.0 -%{_prefix}/lib/udev/rules.d/61-video.rules -%{_hal_sysconfdir}/deviced/* |