Fix typos in CompileHowto.txt (#768)

This commit is contained in:
Felix Yan 2017-10-22 12:29:05 -05:00 committed by brindosch
parent ad764cfeab
commit 49a9ca998d
1 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ sudo apt-get install git cmake build-essential libqt4-dev libusb-1.0-0-dev pytho
# Arch/ALARM dependencies
sudo pacman -S --needed git cmake base-devel qt4 libusb libxrender icu
# RPI ONLY: when you build on the rapberry pi and include the dispmanx grabber (which is the default)
# RPI ONLY: when you build on the raspberry pi and include the dispmanx grabber (which is the default)
# you also need the firmware including headers installed. This downloads the firmware from the raspberrypi github
# and copies the required files to the correct place. The firmware directory can be deleted afterwards if desired.
export FIRMWARE_DIR="raspberrypi-firmware"
@ -13,12 +13,12 @@ git clone --depth 1 https://github.com/raspberrypi/firmware.git "$FIRMWARE_DIR"
sudo cp -R "$FIRMWARE_DIR/hardfp/opt/" /opt
# create hyperion directory and checkout the code from github
# You might want to add "--depth 1" if you only want to recompile the current source or dont want to use git any further
# You might want to add "--depth 1" if you only want to recompile the current source or don't want to use git any further
export HYPERION_DIR="hyperion"
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
# if you forget the --recursive in above statement or you are updating an existing clone you need
# to clone the protobuf submodule by runnning the follwing two statements:
# to clone the protobuf submodule by running the following two statements:
git submodule init
git submodule update
@ -53,9 +53,9 @@ make -j $(nproc)
#after compile, to remove any stuff not needed for a release version.
strip bin/*
# The binaries are build in "$HYPERION_DIR/build/bin". You could copy those to /usr/bin
# The binaries are built in "$HYPERION_DIR/build/bin". You could copy those to /usr/bin
sudo cp ./bin/hyperion-remote /usr/bin/
sudo cp ./bin/hyperiond /usr/bin/
# Copy the effect folder (if you did not use the normal installation methode before)
# Copy the effect folder (if you did not use the normal installation method before)
sudo mkdir -p /opt/hyperion/effects && sudo cp -R ../effects/ /opt/hyperion/