Changeset 4d58bac in mainline for uspace


Ignore:
Timestamp:
2023-10-04T17:00:05Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7d78e466
Parents:
7e660378
Message:

Library and utility for printing OpenFirmware device tree

Location:
uspace
Files:
8 added
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/meson.build

    r7e660378 r4d58bac  
    7272        'nic',
    7373        'nterm',
     74        'ofw',
    7475        'pci',
    7576        'ping',
  • uspace/lib/meson.build

    r7e660378 r4d58bac  
    7272        'minix',
    7373        'nettl',
     74        'ofw',
    7475        'pcm',
    7576        'pcut',
  • uspace/meson.build

    r7e660378 r4d58bac  
    9393        language = 'c'
    9494        installed_data = []
     95        platform_specific = false
    9596
    9697        subdir(appdirs.get('subdir'))
     
    106107        else
    107108                #
    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
    110112                #
    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)
    112115        endif
    113116
Note: See TracChangeset for help on using the changeset viewer.