Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • meson/part/initrd_manifest/meson.build

    r0d71fd6 r514108e  
    11#
     2# Copyright (c) 2024 Jiri Svoboda
    23# Copyright (c) 2019 Jiří Zárevúcky
    34# All rights reserved.
     
    2930# Init binaries. These are actually baked into the bootloader.
    3031rd_init = [
     32        # ELF file with DWARF debug sections for kernel.
     33        # Kernel detects this entry by name.
     34        'kernel.dbg',
     35
    3136        # IMPORTANT: The order of entries is important for bootloader!
    3237        'srv/ns',
     
    4550        'app/getterm',
    4651        'app/kio',
     52        'app/tester',
    4753
    4854        'srv/devman',
     
    5258        'srv/hid/output',
    5359        'srv/klog',
     60        'srv/system',
     61]
    5462
     63rd_essential_drv = [
    5564        'drv/root/root',
    5665        'drv/root/virt',
     
    5867]
    5968
     69rd_drv = rd_essential_drv
     70
    6071if CONFIG_FB
    6172        rd_essential += [
    62                 'app/launcher',
     73                'app/taskbar',
    6374                'app/terminal',
    6475
Note: See TracChangeset for help on using the changeset viewer.