Changeset 4d58bac in mainline


Ignore:
Timestamp:
2023-10-04T17:00:05Z (7 months 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

Files:
8 added
6 edited

Legend:

Unmodified
Added
Removed
  • meson/arch/arm32/meson.build

    r7e660378 r4d58bac  
    5555arch_boot_link_args = arch_kernel_link_args
    5656
    57 
    5857rd_essential_drv += [
    5958        'drv/bus/usb/ehci',
  • meson/arch/ppc32/meson.build

    r7e660378 r4d58bac  
    11#
    2 # Copyright (c) 2021 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# Copyright (c) 2019 Jiří Zárevúcky
    44# All rights reserved.
     
    3939arch_boot_link_args = []
    4040
     41rd_essential += [
     42        'app/ofw'
     43]
    4144
    4245rd_essential_drv += [
  • meson/arch/sparc64/meson.build

    r7e660378 r4d58bac  
    11#
    2 # Copyright (c) 2021 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# Copyright (c) 2019 Jiří Zárevúcky
    44# All rights reserved.
     
    7676endif
    7777
     78rd_essential += [
     79        'app/ofw'
     80]
     81
    7882if PROCESSOR == 'sun4v'
    7983        rd_essential_drv += [
  • 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.