Test

From Variscite Wiki
Revision as of 21:31, 29 July 2022 by Pierluigi (talk | contribs) (→‎t3)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

t4

DEFAULT_FILE_TXT = myfile.txt
DEFAULT_FILE_LOG = myfile.log