Skip to content

Commit 934e633

Browse files
committed
cmake: Remove silent_start driver from examples
1 parent ba7d283 commit 934e633

4 files changed

Lines changed: 2 additions & 33 deletions

File tree

examples/acorn/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ set(SERVICE_NAME "Acorn Web Appliance")
1515
# Name of your service binary
1616
set(BINARY "acorn")
1717

18-
# Maximum memory can be hard-coded into the binary
19-
set(MAX_MEM 128)
20-
2118
# Source files to be linked with OS library parts to form bootable image
2219
set(SOURCES
2320
service.cpp fs/acorn_fs.cpp

examples/demo_service/CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,10 @@ set(SOURCES
3636

3737
if ("$ENV{PLATFORM}" STREQUAL "x86_solo5")
3838
set(DRIVERS
39-
silent_start # Less output during boot
40-
solo5net # Virtio networking
41-
# virtioblock # Virtio block device
42-
# ... Others from src/drivers
39+
solo5net
4340
)
4441
else()
4542
set(DRIVERS
46-
silent_start # Less output during boot
4743
virtionet # Virtio networking
4844
# virtioblock # Virtio block device
4945
# ... Others from src/drivers

examples/tcp/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ set(SOURCES
3434
# DRIVERS / PLUGINS:
3535

3636
set(DRIVERS
37-
silent_start
3837
virtionet # Virtio networking
3938
# ... Others from IncludeOS/src/drivers
4039
)

test/kernel/integration/smp/CMakeLists.txt

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,50 +4,27 @@ cmake_minimum_required(VERSION 2.8.9)
44
if (NOT DEFINED ENV{INCLUDEOS_PREFIX})
55
set(ENV{INCLUDEOS_PREFIX} /usr/local)
66
endif()
7-
87
include($ENV{INCLUDEOS_PREFIX}/includeos/pre.service.cmake)
9-
10-
project (smp)
8+
project (service)
119

1210
# Human-readable name of your service
1311
set(SERVICE_NAME "SMP Test")
1412

1513
# Name of your service binary
1614
set(BINARY "smp")
1715

18-
# Maximum memory can be hard-coded into the binary
19-
set(MAX_MEM 128)
20-
21-
2216
# Source files to be linked with OS library parts to form bootable image
2317
set(SOURCES
2418
service.cpp # ...add more here
2519
)
2620

27-
#
28-
# Service CMake options
29-
# (uncomment to enable)
30-
#
31-
32-
# MISC:
33-
34-
# To add your own include paths:
35-
# set(LOCAL_INCLUDES ".")
36-
37-
# Adding memdisk (expects my.disk to exist in current dir):
38-
# set(MEMDISK ${CMAKE_SOURCE_DIR}/my.disk)
39-
40-
# DRIVERS / PLUGINS:
41-
4221
set(DRIVERS
43-
silent_start
4422
)
4523

4624
set(PLUGINS
4725
# syslogd # Syslog over UDP
4826
# ...others
4927
)
5028

51-
5229
# include service build script
5330
include($ENV{INCLUDEOS_PREFIX}/includeos/post.service.cmake)

0 commit comments

Comments
 (0)