-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCMakeLists.txt
62 lines (54 loc) · 1.84 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# @@@LICENSE
#
# Copyright (c) 2007-2014 LG Electronics, Inc.
#
# 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.
#
# LICENSE@@@
cmake_minimum_required(VERSION 2.8.7)
project(webos-initscripts NONE)
include(webOS/webOS)
webos_modules_init(1 0 0 QUALIFIER RC7)
webos_component(3 0 0)
webos_machine_impl_dep()
webos_configure_source_files(configurelist
files/launch/banner.conf
files/launch/bootmisc.conf
files/launch/cgroups.conf
files/launch/crond.conf
files/launch/dbus.conf
files/launch/dropbear.conf
files/launch/init-boot-done.conf
files/launch/modutils.conf
files/launch/mountall.conf
files/launch/networking.conf
files/launch/populate-volatile.conf
files/launch/reboot.conf
files/launch/SetInitEnv.conf
files/launch/shutdown.conf
files/launch/start_update.conf
files/launch/timezone.conf
files/launch/udev.conf
files/launch/urandom.conf
files/launch/usbctrl.conf)
install(FILES ${configurelist} DESTINATION ${WEBOS_INSTALL_SYSCONFDIR}/init)
# unconfigured job files:
install(FILES
files/launch/alignment.conf
files/launch/console.conf
files/launch/connman.conf
files/launch/devpts.conf
files/launch/sysctl.conf
files/launch/wpa-supplicant.conf
DESTINATION ${WEBOS_INSTALL_SYSCONFDIR}/init)
install(DIRECTORY DESTINATION ${WEBOS_INSTALL_SYSCONFDIR}/init/finish-poststart.d)