Changeset a91b828 in mainline for boot/Makefile.common


Ignore:
Timestamp:
2019-01-10T20:37:54Z (5 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6480827
Parents:
0a520db (diff), 272a293 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Vojtech Horky <vojtech.horky@…> (2019-01-10 20:37:54)
git-committer:
GitHub <noreply@…> (2019-01-10 20:37:54)
Message:

Merge PR #150 from vhotspur/defaults

This is change is mostly motivated by better coverage in CI:

  • Smaller image means we can pack more ported software to the image for testing (currently, this means only mips32 on MSIM).
  • Inclusion of PCUT tests means that we can run them regularly too (patch to CI for that is almost ready).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r0a520db ra91b828  
    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.