Skip to content
This repository was archived by the owner on May 6, 2021. It is now read-only.

Commit a620bcf

Browse files
committed
Update compile instructions
1 parent 87cbe62 commit a620bcf

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CompileHowto.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ sudo cp -R "$FIRMWARE_DIR/hardfp/opt/*" /opt
1313
export HYPERION_DIR="hyperion"
1414
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
1515

16+
# if you forget the --resursive in above statement or you are updating an existing clone you need
17+
# to clone the protobuf submodule by runnning the follwing two statements:
18+
git submodule init
19+
git submodule update
20+
1621
# create and enter the build directory
1722
mkdir "$HYPERION_DIR/build"
1823
cd "$HYPERION_DIR/build"

CrossCompileHowto.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ git clone git://github.com/raspberrypi/tools.git "$RASCROSS_DIR/tools"
3030
# get the Hyperion sources
3131
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
3232

33+
# if you forget the --resursive in above statement or you are updating an existing clone you need
34+
# to clone the protobuf submodule by runnning the follwing two statements:
35+
git submodule init
36+
git submodule update
37+
3338
# do a native build (to build the protobuf compiler for the native platform)
3439
mkdir "$HYPERION_DIR/build"
3540
cmake -DENABLE_DISPMANX=OFF --build "$HYPERION_DIR/build" "$HYPERION_DIR"

0 commit comments

Comments
 (0)