| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
https://criu.org/Changelogs
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit updates $license variable in all APKBUILDs to comply with
short names specified by SPDX version 3.0 [1] where possible. It was
done using find-and-replace method on substrings inside $license
variables.
Only license names were updated, not "expressions" specifying relation
between the licenses (e.g. "X and Y", "X or Y", "X and (Y or Z)") or
exceptions (e.g. "X with exceptions").
Many licenses have a version or multiple variants, e.g. MPL-2.0,
BSD-2-Clause, BSD-3-Clause. However, $license in many aports do not
contain license version or variant. Since there's no way how to infer
this information just from abuild, it were left without the variant
suffix or version, i.e. non SPDX compliant.
GNU licenses (AGPL, GFDL, GPL, LGPL) are especially complicated. They
exist in two variants: -only (formerly e.g. GPL-2.0) and -or-later
(formerly e.g. GPL-2.0+). We did not systematically noted distinguish
between these variants, so GPL-2.0, GPL2, GPLv2 etc. may mean
GPL-2.0-only or GPL-2.0-or-later. Thus GNU licenses without "+" (e.g.
GPL2+) were left without the variant suffix, i.e. non SPDX compliant.
Note: This commit just fixes format of the license names, no
verification has been done if the specified license information is
actually correct!
[1]: https://spdx.org/licenses/
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Build fails with:
make[2]: Entering directory '/home/buildozer/aports/testing/criu/src/criu-2.8'
DEP criu/arch/arm/crtools.d
DEP criu/arch/arm/cpu.d
In file included from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/atomic.h:3:0,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/lock.h:9,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/restorer.h:12,
from criu/arch/arm/crtools.c:17:
include/common/asm/atomic.h:61:2: error: #error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
#error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
^~~~~
DEP criu/arch/arm/crtools.d
In file included from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/atomic.h:3:0,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/lock.h:9,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/restorer.h:12,
from criu/arch/arm/crtools.c:17:
include/common/asm/atomic.h:61:2: error: #error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
#error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
^~~~~
CC criu/arch/arm/cpu.o
CC criu/arch/arm/crtools.o
In file included from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/atomic.h:3:0,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/lock.h:9,
from /home/buildozer/aports/testing/criu/src/criu-2.8/criu/include/restorer.h:12,
from criu/arch/arm/crtools.c:17:
include/common/asm/atomic.h:61:2: error: #error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
#error ARM architecture version (CONFIG_ARMV*) not set or unsupported.
^~~~~
include/common/asm/atomic.h: In function 'atomic_add_return':
include/common/asm/atomic.h:82:2: error: implicit declaration of function 'smp_mb' [-Werror=implicit-function-declaration]
smp_mb();
^~~~~~
|
|
|
|
|
|
|
|
|
| |
Fails on armhf:
make[2]: Entering directory '/home/buildozer/aports/testing/criu/src/criu-2.8'
GEN criu/arch/arm/syscalls.S
make[2]: perl: Command not found
make[2]: *** No rule to make target 'criu/arch/arm/syscalls.S', needed by 'criu/arch/arm/syscalls.o'. Stop.
|
|
|
|
| |
and arm32
|
| |
|
|
A utility for the live checkpoint / restore of LXC containers.
Requires the following additional kernel modules to be enabled:
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_FHANDLE=y
Optional (incremental dumps):
CONFIG_MEM_SOFT_DIRTY=y
|