Changeset 60c96cf in mainline for boot/Makefile.common


Ignore:
Timestamp:
2019-01-09T12:47:37Z (5 years ago)
Author:
Vojtech Horky <vojtech.horky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
272a293
Parents:
3bf8a75
Message:

boot image: GUI apps are not always essential

If the platform (configuration) does not support graphical output, we
really do not need to include vlaunch etc.

This also saves some bytes in the boot image that can be used for
testing ported software more.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r3bf8a75 r60c96cf  
    9494        devman \
    9595        fs/locfs \
    96         hid/compositor \
    9796        klog
     97
     98ifeq ($(CONFIG_FB), y)
     99        RD_SRVS_ESSENTIAL += \
     100                hid/compositor
     101endif
    98102
    99103RD_SRVS_NON_ESSENTIAL = \
     
    162166endif
    163167
    164 RD_APPS_ESSENTIAL = bdsh getterm kio vlaunch vterm
     168RD_APPS_ESSENTIAL = \
     169        bdsh \
     170        getterm \
     171        kio
     172
     173ifeq ($(CONFIG_FB), y)
     174        RD_APPS_ESSENTIAL += \
     175                vlaunch \
     176                vterm
     177endif
    165178
    166179RD_APPS_NON_ESSENTIAL = \
Note: See TracChangeset for help on using the changeset viewer.