It specifies hal's configuration for transport. It is installed
at the /hal/etc/hal-backend-manifest.xml. Specifies IPC to
display/bezel/led/extcon/battery module to work them in IPC mode.
Change-Id: I501993763a868e2ccbc098e30a502edc6e2ec573
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
License: Apache-2.0
Source0: %{name}-%{version}.tar.gz
Source1: hal-backend-config-generic.manifest
+Source2: hal-backend-manifest.xml
%description
Package for hal backend configuration
cp %{SOURCE1} .
%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}%{_hal_sysconfdir}
+cp %{SOURCE2} %{buildroot}%{_hal_sysconfdir}
%files
%manifest %{name}.manifest
+%{_hal_sysconfdir}/hal-backend-manifest.xml
--- /dev/null
+<hal-backend>
+ <manifest>
+ <hal-module>
+ <name>HAL_MODULE_DEVICE_BEZEL</name>
+ <transport>ipc</transport>
+ </hal-module>
+ <hal-module>
+ <name>HAL_MODULE_DEVICE_DISPLAY</name>
+ <transport>ipc</transport>
+ </hal-module>
+ <hal-module>
+ <name>HAL_MODULE_DEVICE_LED</name>
+ <transport>ipc</transport>
+ </hal-module>
+ <hal-module>
+ <name>HAL_MODULE_DEVICE_BATTERY</name>
+ <transport>ipc</transport>
+ </hal-module>
+ <hal-module>
+ <name>HAL_MODULE_DEVICE_EXTERNAL_CONNECTION</name>
+ <transport>ipc</transport>
+ </hal-module>
+ </manifest>
+</hal-backend>