summaryrefslogtreecommitdiffstats
path: root/LICENSE
blob: e8758f89ca27f9a2673358e9ce8d418c0815a040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Different components of the AGL layers are under different licenses (a mix
of MIT and GPLv2). See LICENSE.GPL-2.0-only and LICENSE.MIT for further
details of the individual licenses.

All metadata (e.g. .bb, .bbappend, .bbclass, .inc, templates/* and similar)
is MIT licensed unless otherwise stated.
Source code included in tree for individual recipes (e.g. patches) are under
the LICENSE stated in the associated recipe (.bb file) unless otherwise stated.

License information for any other files (scripts) is either explicitly stated
or defaults to GPL version 2 only.

Individual files can contain the following style tags instead of the full
license text to identify their license:

    SPDX-License-Identifier: GPL-2.0-only
    SPDX-License-Identifier: MIT

This enables machine processing of license information based on the SPDX
License Identifiers that are here available: http://spdx.org/licenses/
interrupts - AFB_DEBUG_WAIT: to wait interrupts To use these variables, assign it the list of break or wait points to reach. Example: ```bash $ AFB_DEBUG_BREAK=main-entry AFB_DEBUG_WAIT=start-load,start-exec afb-daemon .... ``` This tells to ***afb-daemon*** to break at the point **main-entry** and to wait at the points **start-load** and **start-exec**. The items of the list can be separated using comma, space, tab or new-line. The break/wait points are, in the order of their occurrence: - main-entry: before decode arguments - main-args: before daemon setup - main-start: before starting jobs - start-entry: before initialisation of sessions and hooks - start-load: before load and pre-init of bindings - start-start: before init of bindings - start-http: before start of http server - start-call: before execution of requests of the command line (option --call) - start-exec: before execution of child preocees Note also that a call to 'personality' is inserted just after the point start-start.