@@ -1,53 +1,53 | |||
|
1 | 1 | # |
|
2 | 2 | # Setup videocore - Raspberry Userland |
|
3 | 3 | # |
|
4 | 4 | |
|
5 | 5 | # Load utility functions |
|
6 | 6 | . ./functions.sh |
|
7 | 7 | |
|
8 | 8 | if [ "$ENABLE_VIDEOCORE" = true ] ; then |
|
9 | 9 | # Copy existing videocore sources into chroot directory |
|
10 | 10 | if [ -n "$VIDEOCORESRC_DIR" ] && [ -d "$VIDEOCORESRC_DIR" ] ; then |
|
11 |
# Copy local |
|
|
11 | # Copy local videocore sources | |
|
12 | 12 | cp -r "${VIDEOCORESRC_DIR}" "${R}/tmp/userland" |
|
13 | 13 | else |
|
14 |
# Create temporary directory for |
|
|
14 | # Create temporary directory for videocore sources | |
|
15 | 15 | temp_dir=$(as_nobody mktemp -d) |
|
16 | 16 | |
|
17 |
# Fetch |
|
|
17 | # Fetch videocore sources | |
|
18 | 18 | as_nobody git -C "${temp_dir}" clone "${VIDEOCORE_URL}" |
|
19 | 19 | |
|
20 |
# Copy downloaded |
|
|
20 | # Copy downloaded videocore sources | |
|
21 | 21 | mv "${temp_dir}/userland" "${R}/tmp/" |
|
22 | 22 | |
|
23 | 23 | # Set permissions of the U-Boot sources |
|
24 | 24 | chown -R root:root "${R}/tmp/userland" |
|
25 | 25 | |
|
26 | 26 | # Remove temporary directory for U-Boot sources |
|
27 | 27 | rm -fr "${temp_dir}" |
|
28 | 28 | fi |
|
29 | 29 | |
|
30 | 30 | # Create build dir |
|
31 | 31 | mkdir "${R}"/tmp/userland/build |
|
32 | 32 | |
|
33 | 33 | # push us to build directory |
|
34 | 34 | cd "${R}"/tmp/userland/build |
|
35 | 35 | |
|
36 | 36 | if [ "$RELEASE_ARCH" = "arm64" ] ; then |
|
37 | 37 | cmake -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_BUILD_TYPE=release -DARM64=ON -DCMAKE_C_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_CXX_COMPILER=aarch64-linux-gnu-g++ -DCMAKE_ASM_COMPILER=aarch64-linux-gnu-gcc -DCMAKE_C_FLAGS="${CMAKE_C_FLAGS} -U_FORTIFY_SOURCE" -DCMAKE_ASM_FLAGS="${CMAKE_ASM_FLAGS} -c" -DVIDEOCORE_BUILD_DIR="${R}" "${R}/tmp/userland" |
|
38 | 38 | fi |
|
39 | 39 | |
|
40 | 40 | if [ "$RELEASE_ARCH" = "armel" ] ; then |
|
41 | 41 | cmake -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_BUILD_TYPE=release -DCMAKE_C_COMPILER=arm-linux-gnueabi-gcc -DCMAKE_CXX_COMPILER=arm-linux-gnueabi-g++ -DCMAKE_ASM_COMPILER=arm-linux-gnueabi-gcc -DCMAKE_C_FLAGS="${CMAKE_C_FLAGS} -U_FORTIFY_SOURCE" -DCMAKE_ASM_FLAGS="${CMAKE_ASM_FLAGS} -c" -DCMAKE_SYSTEM_PROCESSOR="arm" -DVIDEOCORE_BUILD_DIR="${R}" "${R}/tmp/userland" |
|
42 | 42 | fi |
|
43 | 43 | |
|
44 | 44 | if [ "$RELEASE_ARCH" = "armhf" ] ; then |
|
45 | 45 | cmake -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_BUILD_TYPE=release -DCMAKE_TOOLCHAIN_FILE="${R}"/tmp/userland/makefiles/cmake/toolchains/arm-linux-gnueabihf.cmake -DVIDEOCORE_BUILD_DIR="${R}" "${R}/tmp/userland" |
|
46 | 46 | fi |
|
47 | 47 | |
|
48 | 48 | #build userland |
|
49 | 49 | make -j "$(nproc)" |
|
50 | 50 | |
|
51 | 51 | #back to root of scriptdir |
|
52 | 52 | cd "${WORKDIR}" |
|
53 | 53 | fi |
General Comments 0
Vous devez vous connecter pour laisser un commentaire.
Se connecter maintenant