Changeset 4d58bac in mainline
- Timestamp:
- 2023-10-04T17:00:05Z (16 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7d78e466
- Parents:
- 7e660378
- Files:
-
- 8 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/arm32/meson.build
r7e660378 r4d58bac 55 55 arch_boot_link_args = arch_kernel_link_args 56 56 57 58 57 rd_essential_drv += [ 59 58 'drv/bus/usb/ehci', -
meson/arch/ppc32/meson.build
r7e660378 r4d58bac 1 1 # 2 # Copyright (c) 202 1Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # Copyright (c) 2019 Jiří Zárevúcky 4 4 # All rights reserved. … … 39 39 arch_boot_link_args = [] 40 40 41 rd_essential += [ 42 'app/ofw' 43 ] 41 44 42 45 rd_essential_drv += [ -
meson/arch/sparc64/meson.build
r7e660378 r4d58bac 1 1 # 2 # Copyright (c) 202 1Jiri Svoboda2 # Copyright (c) 2023 Jiri Svoboda 3 3 # Copyright (c) 2019 Jiří Zárevúcky 4 4 # All rights reserved. … … 76 76 endif 77 77 78 rd_essential += [ 79 'app/ofw' 80 ] 81 78 82 if PROCESSOR == 'sun4v' 79 83 rd_essential_drv += [ -
uspace/app/meson.build
r7e660378 r4d58bac 72 72 'nic', 73 73 'nterm', 74 'ofw', 74 75 'pci', 75 76 'ping', -
uspace/lib/meson.build
r7e660378 r4d58bac 72 72 'minix', 73 73 'nettl', 74 'ofw', 74 75 'pcm', 75 76 'pcut', -
uspace/meson.build
r7e660378 r4d58bac 93 93 language = 'c' 94 94 installed_data = [] 95 platform_specific = false 95 96 96 97 subdir(appdirs.get('subdir')) … … 106 107 else 107 108 # 108 # Servers and applications are installed all or 109 # based on rd_essential in case of barebone build 109 # Servers and applications are installed all (unless 110 # platform-specific) or based on rd_essential in case 111 # of barebone build or platform-specific 110 112 # 111 install = not CONFIG_BAREBONE or rd_essential.contains(dir) 113 install = (not CONFIG_BAREBONE and not platform_specific) \ 114 or rd_essential.contains(dir) 112 115 endif 113 116
Note:
See TracChangeset
for help on using the changeset viewer.