-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into security/prevent_rootfs_escape
- Loading branch information
Showing
18 changed files
with
196 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALT Server 10.1 (Mendelevium) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
altlinux-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
NAME="ALT Server" | ||
VERSION="10.1" | ||
ID=altlinux | ||
VERSION_ID=10.1 | ||
PRETTY_NAME="ALT Server 10.1 (Mendelevium)" | ||
ANSI_COLOR="1;33" | ||
CPE_NAME="cpe:/o:alt:server:10.1" | ||
BUILD_ID="ALT Server 10.1" | ||
HOME_URL="https://basealt.ru/" | ||
BUG_REPORT_URL="https://bugs.altlinux.org/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
altlinux-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
altlinux-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
NAME="Arch Linux" | ||
ID=arch | ||
PRETTY_NAME="Arch Linux" | ||
ANSI_COLOR="0;36" | ||
HOME_URL="https://www.archlinux.org/" | ||
ID=arch | ||
BUILD_ID=rolling | ||
ANSI_COLOR="38;2;23;147;209" | ||
HOME_URL="https://archlinux.org/" | ||
DOCUMENTATION_URL="https://wiki.archlinux.org/" | ||
SUPPORT_URL="https://bbs.archlinux.org/" | ||
BUG_REPORT_URL="https://bugs.archlinux.org/" | ||
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/" | ||
LOGO=archlinux-logo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# PLEASE DO NOT EDIT THIS FILE | ||
BOARD=h616 | ||
BOARD_NAME="BTT-CB1" | ||
DISTRIBUTION_CODENAME=bullseye | ||
VERSION=2.3.1 | ||
LINUXFAMILY=sun50iw9 | ||
ARCH=arm64 | ||
INITRD_ARCH=arm64 | ||
BRANCH=current |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
PRETTY_NAME="BTT-CB1 2.3.1 Bullseye" | ||
NAME="Debian GNU/Linux" | ||
VERSION_ID="11" | ||
VERSION="11 (bullseye)" | ||
VERSION_CODENAME=bullseye | ||
ID=debian | ||
HOME_URL="https://www.debian.org/" | ||
SUPPORT_URL="https://www.debian.org/support" | ||
BUG_REPORT_URL="https://bugs.debian.org/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)" | ||
NAME="Debian GNU/Linux" | ||
VERSION_ID="11" | ||
VERSION="11 (bullseye)" | ||
VERSION_CODENAME=bullseye | ||
ID=debian | ||
HOME_URL="https://www.debian.org/" | ||
SUPPORT_URL="https://www.debian.org/support" | ||
BUG_REPORT_URL="https://bugs.debian.org/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
# | ||
# lsb_release command for testing the ld module. | ||
# Only the -a option is supported. | ||
# | ||
# This version of the lsb_release command works without a corresponding | ||
# etc/lsb-release file. | ||
# | ||
|
||
if [[ "$@" != "-a" ]]; then | ||
echo "Usage: lsb_release -a" | ||
exit 2 | ||
fi | ||
|
||
cat <<OUT | ||
No LSB modules are available. | ||
Distributor ID: Debian | ||
Description: Debian GNU/Linux bookworm/sid | ||
Release: n/a | ||
Codename: bookworm | ||
OUT | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bookworm/sid |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
PRETTY_NAME="Debian GNU/Linux bookworm/sid" | ||
NAME="Debian GNU/Linux" | ||
VERSION_CODENAME=bookworm | ||
ID=debian | ||
HOME_URL="https://www.debian.org/" | ||
SUPPORT_URL="https://www.debian.org/support" | ||
BUG_REPORT_URL="https://bugs.debian.org/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters