diff options
-rw-r--r-- | docs/install/rpi_setup.md | 44 | ||||
-rwxr-xr-x | libreboot | 2 | ||||
-rwxr-xr-x | projects/cros-scripts/install/cros-boot-keys | 2 | ||||
-rwxr-xr-x | projects/cros-scripts/install/cros-firmware-prepare | 2 | ||||
-rwxr-xr-x | projects/cros-scripts/install/cros-kernel-install | 2 | ||||
-rwxr-xr-x | projects/cros-scripts/install/cros-kernel-prepare | 2 | ||||
-rwxr-xr-x | projects/cros-scripts/install/cros-medium-setup | 2 | ||||
-rw-r--r-- | projects/libreboot-release/install/libreboot-release | 2 | ||||
-rwxr-xr-x | projects/libreboot-sources/install/libreboot-sources | 2 | ||||
-rw-r--r-- | www/download.md | 5 |
10 files changed, 11 insertions, 54 deletions
diff --git a/docs/install/rpi_setup.md b/docs/install/rpi_setup.md index 54915ddb..e74432d4 100644 --- a/docs/install/rpi_setup.md +++ b/docs/install/rpi_setup.md @@ -198,11 +198,7 @@ keep your libreboot stuff inside. x86# mkdir ~/work -Download NOOBS from [The Raspberry Pi -Foundation.](https://www.raspberrypi.org/downloads/) Torrent download -recommended, and remember to seed. :) - -If you're running Raspian, you can do `sudo raspi-config`, enable SPI +If you're running Raspian, you can do **sudo raspi-config**, enable SPI under Advanced and then spidev will be enabled. Simple, eh? [Download Libreboot from their releases @@ -213,43 +209,9 @@ GPG signature as well. x86# for signature in $(ls *.sig); do gpg --verify $signature; done -Extract NOOBS and libreboot. - - x86# mkdir ~/work/noobs - - x86# unzip ~/Downloads/NOOBS_v1_4_1.zip -d ~/work/noobs/ - - x86# cd ~/work && tar -xvJf ~/Downloads/libreboot_bin.tar.xz - -Install Noobs to your fat32 formatted SD card - - x86# cp -R ~/work/noobs/* /path/to/mounted/SDcard/ - -### Set up NOOBS on Raspberry Pi - -Plug in the NOOBs SDCard to your Raspberry Pi, and enable the following -under 'Advanced Options': - -SSH server - -SPI - -I2C - -On first boot - - pi# sudo apt-get update && sudo apt-get dist-upgrade && reboot - -On second boot - - pi# sudo apt-get update && sudo apt-get install libftdi1 libftdi-dev libusb-dev libpci-dev subversion libusb-1.0-0-dev - -Other dependencies that should already be installed with the noobs base -install include: - -pciutils, zlib, libusb, build-essential +Install dependencies: -If they are missing then install them. + pi# sudo apt-get update && sudo apt-get install libftdi1 libftdi-dev libusb-dev libpci-dev subversion libusb-1.0-0-dev pciutils, zlib, libusb, build-essential Download and build flashrom. @@ -133,7 +133,7 @@ libreboot_tool() { } libreboot_setup() { - root="$(realpath "$(dirname "$0")")" + root="$(readlink -f "$(dirname "$0")")" executable="$(basename "$0")" local requirements="git" diff --git a/projects/cros-scripts/install/cros-boot-keys b/projects/cros-scripts/install/cros-boot-keys index cf239718..416b7604 100755 --- a/projects/cros-scripts/install/cros-boot-keys +++ b/projects/cros-scripts/install/cros-boot-keys @@ -158,7 +158,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if [ -z "$KEYS_VERSION" ] diff --git a/projects/cros-scripts/install/cros-firmware-prepare b/projects/cros-scripts/install/cros-firmware-prepare index d225e565..73820f05 100755 --- a/projects/cros-scripts/install/cros-firmware-prepare +++ b/projects/cros-scripts/install/cros-firmware-prepare @@ -244,7 +244,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if ! [ -z "$VBOOT_TOOLS_PATH" ] diff --git a/projects/cros-scripts/install/cros-kernel-install b/projects/cros-scripts/install/cros-kernel-install index 33168caa..589a36c0 100755 --- a/projects/cros-scripts/install/cros-kernel-install +++ b/projects/cros-scripts/install/cros-kernel-install @@ -228,7 +228,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if ! [ -z "$VBOOT_TOOLS_PATH" ] diff --git a/projects/cros-scripts/install/cros-kernel-prepare b/projects/cros-scripts/install/cros-kernel-prepare index 71a88cf8..4f374db4 100755 --- a/projects/cros-scripts/install/cros-kernel-prepare +++ b/projects/cros-scripts/install/cros-kernel-prepare @@ -95,7 +95,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if ! [ -z "$VBOOT_TOOLS_PATH" ] diff --git a/projects/cros-scripts/install/cros-medium-setup b/projects/cros-scripts/install/cros-medium-setup index ffb4d894..c3419868 100755 --- a/projects/cros-scripts/install/cros-medium-setup +++ b/projects/cros-scripts/install/cros-medium-setup @@ -250,7 +250,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if [ -z "$KERNEL_PATH" ] diff --git a/projects/libreboot-release/install/libreboot-release b/projects/libreboot-release/install/libreboot-release index 3dd85336..b916adac 100644 --- a/projects/libreboot-release/install/libreboot-release +++ b/projects/libreboot-release/install/libreboot-release @@ -246,7 +246,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) if [ -z "$MACHINE" ] diff --git a/projects/libreboot-sources/install/libreboot-sources b/projects/libreboot-sources/install/libreboot-sources index 953d4a1e..d2f19753 100755 --- a/projects/libreboot-sources/install/libreboot-sources +++ b/projects/libreboot-sources/install/libreboot-sources @@ -103,7 +103,7 @@ requirements() { } setup() { - root=$( realpath "$( dirname "$0" )" ) + root=$(readlink -f "$( dirname "$0" )" ) executable=$( basename "$0" ) } diff --git a/www/download.md b/www/download.md index 6c29500f..c6abf394 100644 --- a/www/download.md +++ b/www/download.md @@ -47,8 +47,6 @@ Project, USA) <https://vimuser.org/libreboot/> (vimuser.org, Netherlands) -<https://mirror.se.partyvan.eu/pub/libreboot/> (partyvan.eu, Sweden) - <https://elgrande74.net/libreboot/> (elgrande74.net, France) HTTP mirrors {#http} @@ -62,9 +60,6 @@ if using HTTPS. <http://mirrors.mit.edu/libreboot/> (MIT university, USA) -<http://tpvj6abq225m5pcf.onion/pub/libreboot/> (Tor hidden server, -Undisclosed location) - <http://mirror.linux.ro/libreboot/> (linux.ro, Romania) <http://mirror.helium.in-berlin.de/libreboot/> (in-berlin.de, Germany) |