Test

From Variscite Wiki
Revision as of 00:26, 27 May 2022 by Pierluigi (talk | contribs)

Yocto Platform Customization2

Yocto Platform Customization

t1

Yocto Platform Customization2

  • Kernel documentation from fsl-yocto-L4.1.15_2.0.0-ga release

Documentation is available for download from fsl-yocto-imx-4.1.15_2.0.0-docs

t2

Yocto Platform Customization2

t3

a

SOME_VERSION = 2.11.1
SOME_TRIGGER = 2.10
SOME_VERSION > SOME_TRIGGER : true
SOME_VERSION >= SOME_TRIGGER : true
SOME_VERSION < SOME_TRIGGER : false
SOME_VERSION <= SOME_TRIGGER : false
SOME_VERSION == SOME_TRIGGER : false

b

SOME_VERSION = 2.9.1
SOME_TRIGGER = 2.10
SOME_VERSION > SOME_TRIGGER : true
SOME_VERSION >= SOME_TRIGGER : true
SOME_VERSION < SOME_TRIGGER : false
SOME_VERSION <= SOME_TRIGGER : false
SOME_VERSION == SOME_TRIGGER : false