Merge pull request #7377 from 86x/pi-support

fix: Support various Raspberry Pi OS's in SUPPORT_MAP
pull/7420/head
Andras Iklody 2021-05-14 12:14:16 +02:00 committed by GitHub
commit ea3071e78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 19 additions and 11 deletions

View File

@ -2250,6 +2250,7 @@ yumInstallCoreDeps7 () {
PHP_INI="/etc/php.ini"
sudo dnf install gcc git zip unzip \
mod_ssl \
moreutils \
redis \
libxslt-devel zlib-devel ssdeep-devel -y
@ -2291,6 +2292,7 @@ yumInstallCoreDeps8 () {
sudo dnf install gcc git zip unzip \
httpd \
mod_ssl \
moreutils \
redis \
mariadb \
mariadb-server \
@ -3697,11 +3699,14 @@ x86_64-kali-2021.3
x86_64-kali-2021.4
armv6l-raspbian-stretch
armv7l-raspbian-stretch
armv7l-raspbian-buster
armv7l-debian-jessie
armv7l-debian-stretch
armv7l-debian-buster
armv7l-ubuntu-bionic
armv7l-ubuntu-focal
aarch64-ubuntu-focal
aarch64-ubuntu-hirsute
"
# Check if we actually support this configuration
@ -3753,8 +3758,8 @@ if [[ "${FLAVOUR}" == "ubuntu" ]]; then
exit
fi
# If Debian is detected, figure out which release it is and run the according scripts
if [[ "${FLAVOUR}" == "debian" ]]; then
# If Debian/Raspbian is detected, figure out which release it is and run the according scripts
if [[ "${FLAVOUR}" == "debian" ]] || [[ "${FLAVOUR}" == "raspbian" ]]; then
CODE=$(lsb_release -s -c| tr '[:upper:]' '[:lower:]')
if [[ "${CODE}" == "buster" ]]; then
echo "Install on Debian testing fully supported."

View File

@ -1,5 +1,5 @@
; Generated by RHash v1.3.9 on 2021-04-07 at 14:14.40
; Generated by RHash v1.4.0 on 2021-04-27 at 19:40.45
; Written by Kravchenko Aleksey (Akademgorodok) - http://rhash.sf.net/
;
; 161860 14:14.40 2021-04-07 INSTALL.sh
INSTALL.sh 799BE3C88392FFCD09F5BDD49BAB5FB83C0B8A5E 759BB387FE1C11FB8D95326342C7E71B9EEF1549EEA18977E497E5D1B7B6B528 D5EBD0EE0E7E2A4AE6F68063D9A2C581EEF340816C383E00534143AE8787F24F5CF3EF20029DFA8F05D6E4A4B8BF2DE8 3C20996CB15AFC65A8B2A743AF5244FDAC1D1652E338A20B91AF4F76B0B885F4E4C17096838F26BCC3A09E3BEF24F0C2D5B4DB5C19B692573EB1AA0013907689
; 162034 19:40.45 2021-04-27 INSTALL.sh
INSTALL.sh D560285EFF4EF709FD094256982F149B8C8E4110 549613A0405D89549885525B58529905B0DE16677C7CBAA1ECFFEB239E268004 221B86BE366A9FAA94080A28B0A7D8A107F4A44C678AF6F2606D973A1C8F4076508AEE501D2ED29075B0FF1642744211 C9D1A61236DA0A0FD468A777DBD529F10371361463F2437861B637084BEA14AD42C8EA61BE40489A9F2F239229AE8930FDF1BB4787DD296EB49E129CF3C64B47

View File

@ -1 +1 @@
799be3c88392ffcd09f5bdd49bab5fb83c0b8a5e INSTALL.sh
d560285eff4ef709fd094256982f149b8c8e4110 INSTALL.sh

View File

@ -1 +1 @@
759bb387fe1c11fb8d95326342c7e71b9eef1549eea18977e497e5d1b7b6b528 INSTALL.sh
549613a0405d89549885525b58529905b0de16677c7cbaa1ecffeb239e268004 INSTALL.sh

View File

@ -1 +1 @@
d5ebd0ee0e7e2a4ae6f68063d9a2c581eef340816c383e00534143ae8787f24f5cf3ef20029dfa8f05d6e4a4b8bf2de8 INSTALL.sh
221b86be366a9faa94080a28b0a7d8a107f4a44c678af6f2606d973a1c8f4076508aee501d2ed29075b0ff1642744211 INSTALL.sh

View File

@ -1 +1 @@
3c20996cb15afc65a8b2a743af5244fdac1d1652e338a20b91af4f76b0b885f4e4c17096838f26bcc3a09e3bef24f0c2d5b4db5c19b692573eb1aa0013907689 INSTALL.sh
c9d1a61236da0a0fd468a777dbd529f10371361463f2437861b637084bea14ad42c8ea61be40489a9f2f239229ae8930fdf1bb4787dd296eb49e129cf3c64b47 INSTALL.sh

View File

@ -865,11 +865,14 @@ x86_64-kali-2021.3
x86_64-kali-2021.4
armv6l-raspbian-stretch
armv7l-raspbian-stretch
armv7l-raspbian-buster
armv7l-debian-jessie
armv7l-debian-stretch
armv7l-debian-buster
armv7l-ubuntu-bionic
armv7l-ubuntu-focal
aarch64-ubuntu-focal
aarch64-ubuntu-hirsute
"
# Check if we actually support this configuration
@ -921,8 +924,8 @@ if [[ "${FLAVOUR}" == "ubuntu" ]]; then
exit
fi
# If Debian is detected, figure out which release it is and run the according scripts
if [[ "${FLAVOUR}" == "debian" ]]; then
# If Debian/Raspbian is detected, figure out which release it is and run the according scripts
if [[ "${FLAVOUR}" == "debian" ]] || [[ "${FLAVOUR}" == "raspbian" ]]; then
CODE=$(lsb_release -s -c| tr '[:upper:]' '[:lower:]')
if [[ "${CODE}" == "buster" ]]; then
echo "Install on Debian testing fully supported."