File tree Expand file tree Collapse file tree
test/kernel/integration/smp Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ set(SERVICE_NAME "Acorn Web Appliance")
1515# Name of your service binary
1616set (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
2219set (SOURCES
2320 service.cpp fs/acorn_fs.cpp
Original file line number Diff line number Diff line change @@ -36,14 +36,10 @@ set(SOURCES
3636
3737if ("$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 )
4441else ()
4542 set (DRIVERS
46- silent_start # Less output during boot
4743 virtionet # Virtio networking
4844 # virtioblock # Virtio block device
4945 # ... Others from src/drivers
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ set(SOURCES
3434# DRIVERS / PLUGINS:
3535
3636set (DRIVERS
37- silent_start
3837 virtionet # Virtio networking
3938 # ... Others from IncludeOS/src/drivers
4039 )
Original file line number Diff line number Diff line change @@ -4,50 +4,27 @@ cmake_minimum_required(VERSION 2.8.9)
44if (NOT DEFINED ENV{INCLUDEOS_PREFIX})
55 set (ENV{INCLUDEOS_PREFIX} /usr/local)
66endif ()
7-
87include ($ENV{INCLUDEOS_PREFIX} /includeos/pre.service.cmake )
9-
10- project (smp)
8+ project (service)
119
1210# Human-readable name of your service
1311set (SERVICE_NAME "SMP Test" )
1412
1513# Name of your service binary
1614set (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
2317set (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-
4221set (DRIVERS
43- silent_start
4422 )
4523
4624set (PLUGINS
4725 # syslogd # Syslog over UDP
4826 # ...others
4927 )
5028
51-
5229# include service build script
5330include ($ENV{INCLUDEOS_PREFIX} /includeos/post.service.cmake )
You can’t perform that action at this time.
0 commit comments