lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since 6068476 was 200b2113, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 6 years ago |
Reorganize main meson.build script
I split most of it into separate subdirs, so that the overall organization
is easier to follow.
|
-
Property mode
set to
100644
|
File size:
643 bytes
|
Line | |
---|
1 | # Init binaries. These are actually baked into the bootloader.
|
---|
2 | rd_init = [
|
---|
3 | # IMPORTANT: The order of entries is important for bootloader!
|
---|
4 | 'srv/ns',
|
---|
5 | 'srv/loader',
|
---|
6 | 'app/init',
|
---|
7 | 'srv/locsrv',
|
---|
8 | 'srv/bd/rd',
|
---|
9 | 'srv/vfs',
|
---|
10 | 'srv/logger',
|
---|
11 | 'srv/fs/' + RDFMT,
|
---|
12 | ]
|
---|
13 |
|
---|
14 | # Binaries allowed on the initrd image when CONFIG_BAREBONE is enabled.
|
---|
15 | rd_essential = [
|
---|
16 | 'app/bdsh',
|
---|
17 | 'app/getterm',
|
---|
18 | 'app/kio',
|
---|
19 |
|
---|
20 | 'srv/devman',
|
---|
21 | 'srv/fs/locfs',
|
---|
22 | 'srv/hid/console',
|
---|
23 | 'srv/hid/input',
|
---|
24 | 'srv/hid/output',
|
---|
25 | 'srv/klog',
|
---|
26 |
|
---|
27 | 'drv/root/root',
|
---|
28 | 'drv/root/virt',
|
---|
29 | 'drv/fb/kfb',
|
---|
30 | ]
|
---|
31 |
|
---|
32 | if CONFIG_FB
|
---|
33 | rd_essential += [
|
---|
34 | 'app/vlaunch',
|
---|
35 | 'app/vterm',
|
---|
36 |
|
---|
37 | 'srv/hid/compositor',
|
---|
38 | ]
|
---|
39 | endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.