From 780c3245596ffb50c8982cf64628d8dea3a975d9 Mon Sep 17 00:00:00 2001 From: Steev Klimaszewski Date: Mon, 17 Jun 2019 02:00:54 -0500 Subject: [PATCH] all: Move extras to be installed later Due to extras pulling in the modifications to the plymouth config file, we were getting prompted whether to overwrite it or not. There is a bug to fix plymouth but currently upstream needs help to work on it. Work around it for now. --- banana-pi.sh | 6 +++--- banana-pro.sh | 6 +++--- bbb.sh | 6 +++--- chromebook-arm-exynos.sh | 6 +++--- chromebook-arm-nyan.sh | 6 +++--- chromebook-arm-veyron.sh | 6 +++--- cubieboard2.sh | 6 +++--- cubietruck.sh | 6 +++--- cubox-i.sh | 6 +++--- cubox.sh | 6 +++--- kalitap.sh | 6 +++--- luna.sh | 6 +++--- mini-x.sh | 6 +++--- nanopi2.sh | 6 +++--- nanopi3.sh | 6 +++--- nanopineoplus2.sh | 6 +++--- odroid-c.sh | 6 +++--- odroid-c2-mainline.sh | 6 +++--- odroid-c2.sh | 6 +++--- odroid-u2.sh | 6 +++--- odroid-w-devkit.sh | 6 +++--- odroid-w.sh | 6 +++--- odroid-xu.sh | 6 +++--- odroid-xu3.sh | 6 +++--- riot.sh | 6 +++--- rpi-hyperpixel.sh | 6 +++--- rpi-tft.sh | 6 +++--- rpi.sh | 6 +++--- rpi0w-nexmon.sh | 6 +++--- rpi2.sh | 6 +++--- rpi3-64-lite.sh | 6 +++--- rpi3-64.sh | 6 +++--- rpi3-nexmon-hyperpixel.sh | 6 +++--- rpi3-nexmon.sh | 6 +++--- trimslice.sh | 6 +++--- usbarmory.sh | 6 +++--- utilite.sh | 6 +++--- 37 files changed, 111 insertions(+), 111 deletions(-) diff --git a/banana-pi.sh b/banana-pi.sh index a0afc0c..4b8e873 100755 --- a/banana-pi.sh +++ b/banana-pi.sh @@ -57,7 +57,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # You may want to leave security.kali.org alone, but if you trust your local @@ -177,8 +177,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/banana-pro.sh b/banana-pro.sh index 5a005c5..e51dfd4 100755 --- a/banana-pro.sh +++ b/banana-pro.sh @@ -56,7 +56,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # You may want to leave security.kali.org alone, but if you trust your local @@ -176,8 +176,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/bbb.sh b/bbb.sh index be6d0ba..41db20f 100755 --- a/bbb.sh +++ b/bbb.sh @@ -45,7 +45,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr udhcpd xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -183,8 +183,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/chromebook-arm-exynos.sh b/chromebook-arm-exynos.sh index a3e4a46..f5bc205 100755 --- a/chromebook-arm-exynos.sh +++ b/chromebook-arm-exynos.sh @@ -56,7 +56,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr xfce4-goodies xfce4-terminal wpasupplicant xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -175,8 +175,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/chromebook-arm-nyan.sh b/chromebook-arm-nyan.sh index d97e077..8b44588 100755 --- a/chromebook-arm-nyan.sh +++ b/chromebook-arm-nyan.sh @@ -56,7 +56,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr xfce4-goodies xfce4-terminal wpasupplicant xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -175,8 +175,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/chromebook-arm-veyron.sh b/chromebook-arm-veyron.sh index 3eb5b19..c4707d8 100755 --- a/chromebook-arm-veyron.sh +++ b/chromebook-arm-veyron.sh @@ -56,7 +56,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware florence firefox-esr xfce4-goodies xfce4-terminal xfonts-terminus xinput wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -175,8 +175,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/cubieboard2.sh b/cubieboard2.sh index d447efd..3efb819 100755 --- a/cubieboard2.sh +++ b/cubieboard2.sh @@ -56,7 +56,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -174,8 +174,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/cubietruck.sh b/cubietruck.sh index 4799c5f..30aff69 100755 --- a/cubietruck.sh +++ b/cubietruck.sh @@ -56,7 +56,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -174,8 +174,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/cubox-i.sh b/cubox-i.sh index 343b90b..7655eee 100755 --- a/cubox-i.sh +++ b/cubox-i.sh @@ -58,7 +58,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -176,8 +176,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/cubox.sh b/cubox.sh index 0c9b395..e47626e 100755 --- a/cubox.sh +++ b/cubox.sh @@ -58,7 +58,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -176,8 +176,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/kalitap.sh b/kalitap.sh index f40f22b..7a628de 100755 --- a/kalitap.sh +++ b/kalitap.sh @@ -45,7 +45,7 @@ tools="passing-the-hash winexe aircrack-ng hydra john sqlmap wireshark libnfc-bi services="openssh-server apache2" extras="firefox-esr wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # You may want to leave security.kali.org alone, but if you trust your local @@ -171,8 +171,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/luna.sh b/luna.sh index 17241b1..2bc5efe 100755 --- a/luna.sh +++ b/luna.sh @@ -45,7 +45,7 @@ tools="passing-the-hash winexe aircrack-ng hydra john sqlmap wireshark libnfc-bi services="openssh-server apache2" extras="firefox-esr wpasupplicant" -export packages="${arm} ${base} ${services} ${extras}" +export packages="${arm} ${base} ${services}" export architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -168,8 +168,8 @@ rm -f /etc/udev/rules.d/70-persistent-net.rules # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install # Regenerated the shared-mime-info database on the first boot # since it fails to do so properly in a chroot. diff --git a/mini-x.sh b/mini-x.sh index 1625280..88915ff 100755 --- a/mini-x.sh +++ b/mini-x.sh @@ -56,7 +56,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -174,8 +174,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/nanopi2.sh b/nanopi2.sh index 27a9a51..2171736 100755 --- a/nanopi2.sh +++ b/nanopi2.sh @@ -59,7 +59,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="firefox-esr xfce4-terminal wpasupplicant python-smbus i2c-tools bluez bluez-firmware xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -196,8 +196,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/nanopi3.sh b/nanopi3.sh index f4b13a0..d05daca 100755 --- a/nanopi3.sh +++ b/nanopi3.sh @@ -59,7 +59,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="firefox-esr xfce4-terminal wpasupplicant python-smbus i2c-tools bluez bluez-firmware xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -197,8 +197,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/nanopineoplus2.sh b/nanopineoplus2.sh index 8035b41..837bf01 100755 --- a/nanopineoplus2.sh +++ b/nanopineoplus2.sh @@ -52,7 +52,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd haveged openssh-server openvpn" extras="bluetooth libnss-systemd network-manager psmisc wpasupplicant xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -266,8 +266,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-c.sh b/odroid-c.sh index 952fd57..424d6fb 100755 --- a/odroid-c.sh +++ b/odroid-c.sh @@ -59,7 +59,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="fbset firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -177,8 +177,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-c2-mainline.sh b/odroid-c2-mainline.sh index e6f828a..ef8b7f3 100755 --- a/odroid-c2-mainline.sh +++ b/odroid-c2-mainline.sh @@ -65,7 +65,7 @@ services="apache2 atftpd openssh-server openvpn tightvncserver" extras="fbset xfce4-terminal xfce4-goodies wpasupplicant libnss-systemd" #kali="build-essential debhelper devscripts dput lintian quilt git-buildpackage gitk dh-make sbuild" -packages="${arm} ${base} ${services} ${extras} ${kali}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -197,8 +197,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-c2.sh b/odroid-c2.sh index b9a47fb..d202afc 100755 --- a/odroid-c2.sh +++ b/odroid-c2.sh @@ -64,7 +64,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="fbset libnss-systemd xfce4-goodies xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras} ${kali}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -194,8 +194,8 @@ rm -f /etc/udev/rules.d/70-persistent-net.rules export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-u2.sh b/odroid-u2.sh index e4d5152..6a4d43d 100755 --- a/odroid-u2.sh +++ b/odroid-u2.sh @@ -59,7 +59,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -177,8 +177,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-w-devkit.sh b/odroid-w-devkit.sh index 4ff6dce..866313d 100755 --- a/odroid-w-devkit.sh +++ b/odroid-w-devkit.sh @@ -49,7 +49,7 @@ services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" size=14000 # Size of image in megabytes -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -176,8 +176,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-w.sh b/odroid-w.sh index cc1b40d..1c4307c 100755 --- a/odroid-w.sh +++ b/odroid-w.sh @@ -49,7 +49,7 @@ services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" size=7000 # Size of image in megabytes -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -176,8 +176,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-xu.sh b/odroid-xu.sh index 34e4854..7e88772 100755 --- a/odroid-xu.sh +++ b/odroid-xu.sh @@ -63,7 +63,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -183,8 +183,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/odroid-xu3.sh b/odroid-xu3.sh index 66a1abf..59add74 100755 --- a/odroid-xu3.sh +++ b/odroid-xu3.sh @@ -59,7 +59,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant" -packages="${arm} ${base} ${desktop} ${tools} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -180,8 +180,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/riot.sh b/riot.sh index 9bc2bf8..e9d41be 100755 --- a/riot.sh +++ b/riot.sh @@ -61,7 +61,7 @@ tools="aircrack-ng ethtool hydra john libnfc-bin mfoc nmap passing-the-hash sqlm services="apache2 openssh-server" extras="firefox-esr xfce4-terminal wpasupplicant gcc" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -202,8 +202,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi-hyperpixel.sh b/rpi-hyperpixel.sh index 8d7b9f3..0cfea31 100755 --- a/rpi-hyperpixel.sh +++ b/rpi-hyperpixel.sh @@ -51,7 +51,7 @@ extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-evdev # Git commit hash to check out for the kernel #kernel_commit=20fe468 -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -221,8 +221,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi-tft.sh b/rpi-tft.sh index bdcd23c..64a61f7 100755 --- a/rpi-tft.sh +++ b/rpi-tft.sh @@ -48,7 +48,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-pip python-requests python-rpi.gpio python-smbus triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -220,8 +220,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi.sh b/rpi.sh index 2af817c..997be61 100755 --- a/rpi.sh +++ b/rpi.sh @@ -51,7 +51,7 @@ extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-pip p # Git commit hash to check out for the kernel #kernel_commit=20fe468 -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -213,8 +213,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi0w-nexmon.sh b/rpi0w-nexmon.sh index fa9308c..11a8d9d 100755 --- a/rpi0w-nexmon.sh +++ b/rpi0w-nexmon.sh @@ -50,7 +50,7 @@ tools="aircrack-ng cewl crunch dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="alsa-utils bluez bluez-firmware i2c-tools lua5.1 python-configobj python-pip python-requests python-rpi.gpio python-smbus triggerhappy whiptail wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armel" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -264,8 +264,8 @@ rm -f /etc/udev/rules.d/70-persistent-net.rules export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi2.sh b/rpi2.sh index b85792f..d87dc24 100755 --- a/rpi2.sh +++ b/rpi2.sh @@ -48,7 +48,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-pip python-requests python-rpi.gpio python-smbus raspi3-firmware triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -221,8 +221,8 @@ rm -f /etc/udev/rules.d/70-persistent-net.rules export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/rpi3-64-lite.sh b/rpi3-64-lite.sh index d22fdee..3f37d6f 100755 --- a/rpi3-64-lite.sh +++ b/rpi3-64-lite.sh @@ -35,7 +35,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware i2c-tools python-configobj python-pip python-requests python-rpi.gpio python-smbus triggerhappy wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. @@ -228,8 +228,8 @@ echo "root:toor" | chpasswd export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages autoremove # libinput seems to fail hard on RaspberryPi devices, so we make sure it's not diff --git a/rpi3-64.sh b/rpi3-64.sh index e2892d6..f25f57a 100755 --- a/rpi3-64.sh +++ b/rpi3-64.sh @@ -36,7 +36,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-pip python-requests python-rpi.gpio python-smbus triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="arm64" # If you have your own preferred mirrors, set them here. @@ -228,8 +228,8 @@ echo "root:toor" | chpasswd export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages autoremove # libinput seems to fail hard on RaspberryPi devices, so we make sure it's not diff --git a/rpi3-nexmon-hyperpixel.sh b/rpi3-nexmon-hyperpixel.sh index 1864320..f296c39 100755 --- a/rpi3-nexmon-hyperpixel.sh +++ b/rpi3-nexmon-hyperpixel.sh @@ -42,7 +42,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-evdev python-pip python-requests python-rpi.gpio python-smbus raspi3-firmware triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. @@ -249,8 +249,8 @@ echo "root:toor" | chpasswd export DEBIAN_FRONTEND=noninteractive apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install # Install the kernel packages dpkg -i /root/raspberrypi-kernel_${rpikernelver}_armhf.deb /root/raspberrypi-kernel-headers_${rpikernelver}_armhf.deb diff --git a/rpi3-nexmon.sh b/rpi3-nexmon.sh index d983100..c90abbb 100755 --- a/rpi3-nexmon.sh +++ b/rpi3-nexmon.sh @@ -36,7 +36,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools python-configobj python-pip python-requests python-rpi.gpio python-smbus triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. @@ -232,8 +232,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install # Install the kernel packages echo "deb http://http.re4son-kernel.com/re4son kali-pi main" > /etc/apt/sources.list.d/re4son.list diff --git a/trimslice.sh b/trimslice.sh index 6cde4dd..9f96eed 100755 --- a/trimslice.sh +++ b/trimslice.sh @@ -59,7 +59,7 @@ tools="aircrack-ng crunch cewl dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -214,8 +214,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/usbarmory.sh b/usbarmory.sh index 2803585..920cd3e 100755 --- a/usbarmory.sh +++ b/usbarmory.sh @@ -55,7 +55,7 @@ tools="aircrack-ng cewl crunch dnsrecon dnsutils ethtool exploitdb hydra john li services="apache2 atftpd haveged openssh-server openvpn tightvncserver" extras="cryptsetup isc-dhcp-server lvm2 wpasupplicant" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -175,8 +175,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove diff --git a/utilite.sh b/utilite.sh index 7064a7b..c7e4251 100755 --- a/utilite.sh +++ b/utilite.sh @@ -60,7 +60,7 @@ services="apache2 atftpd openssh-server openvpn tightvncserver" extras="bluez bluez-firmware firefox-esr i2c-tools triggerhappy wpasupplicant xfce4-terminal xfonts-terminus" -packages="${arm} ${base} ${services} ${extras}" +packages="${arm} ${base} ${services}" architecture="armhf" # If you have your own preferred mirrors, set them here. # After generating the rootfs, we set the sources.list to the default settings. @@ -193,8 +193,8 @@ export DEBIAN_FRONTEND=noninteractive # So to workaround it, we attempt to install them twice. apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages install ${packages} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install -apt-get --yes --allow-change-held-packages install ${desktop} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install +apt-get --yes --allow-change-held-packages install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install apt-get --yes --allow-change-held-packages dist-upgrade apt-get --yes --allow-change-held-packages autoremove