coredump: enable coredump generation on arm

Add relevant elf header constants and notes for the arm platform
to enable coredump generation.

Signed-off-by: समीर सिंह Sameer Singh <lumarzeli30@gmail.com>
This commit is contained in:
समीर सिंह Sameer Singh 2025-02-17 18:06:10 +05:30 committed by Andrei Vagin
parent da90b33a42
commit 38b9807cd5
4 changed files with 288 additions and 30 deletions

View file

@ -45,8 +45,8 @@ function run_test {
UNAME_M=$(uname -m)
if [[ "$UNAME_M" != "aarch64" && "$UNAME_M" != "x86_64" ]]; then
echo "criu-coredump only supports aarch64 and x86_64. skipping."
if [[ "$UNAME_M" != "aarch64" && "$UNAME_M" != "armv7l" &&"$UNAME_M" != "x86_64" ]]; then
echo "criu-coredump only supports aarch64 armv7l, and x86_64. skipping."
exit 0
fi