This repository was archived by the owner on May 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ sudo cp -R "$FIRMWARE_DIR/hardfp/opt/*" /opt
13
13
export HYPERION_DIR="hyperion"
14
14
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
15
15
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
+
16
21
# create and enter the build directory
17
22
mkdir "$HYPERION_DIR/build"
18
23
cd "$HYPERION_DIR/build"
Original file line number Diff line number Diff line change @@ -30,6 +30,11 @@ git clone git://github.com/raspberrypi/tools.git "$RASCROSS_DIR/tools"
30
30
# get the Hyperion sources
31
31
git clone --recursive https://github.com/tvdzwan/hyperion.git "$HYPERION_DIR"
32
32
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
+
33
38
# do a native build (to build the protobuf compiler for the native platform)
34
39
mkdir "$HYPERION_DIR/build"
35
40
cmake -DENABLE_DISPMANX=OFF --build "$HYPERION_DIR/build" "$HYPERION_DIR"
You can’t perform that action at this time.
0 commit comments