Skip to content

Commit 5a91fa9

Browse files
committed
fix missed chrome flags for rpidecoder
1 parent 9a00cfb commit 5a91fa9

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

overlay-rpi4-fydeos/make.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ ARC_VERSION_MAJOR="9"
1111
ARC_PLATFORM_SDK_VERSION="28"
1212

1313
CHROME_DEV_FLAGS="${CHROME_DEV_FLAGS}
14+
--load-media-router-component-extension=1
15+
--fydeos-force-show-cursor
16+
--enable-rpi-video-decoder
17+
--no-sandbox
18+
--use-legacy-plane-manager
1419
--use-vulkan=swiftshader
1520
--enable-gpu-rasterization"
1621
COLLISION_IGNORE="/etc/hardware_features.xml"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
CHROMEOS_VERSION=13
2-
FYDEOS_BUILD=5
2+
FYDEOS_BUILD=6
33
FYDEOS_RELEASE=13.0

overlay-rpi4/make.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ USE="${USE} libcamera"
2929
CHROME_ORIGIN=LOCAL_SOURCE
3030

3131
#TTY_CONSOLE="ttyS0"
32-
3332
CHROME_DEV_FLAGS="${CHROME_DEV_FLAGS}
33+
--load-media-router-component-extension=1
3434
--fydeos-force-show-cursor
3535
--enable-rpi-video-decoder
3636
--no-sandbox

project-cros-pi/eclass/chrome-dev-flag.eclass

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ src_compile() {
3636
cat ${ROOT}/etc/chrome_dev.conf > $CHROME_TMP_CONFIG
3737
if [ -n "$CHROME_DEV_FLAGS" ]; then
3838
einfo "append flags: ${CHROME_DEV_FLAGS}"
39-
append_flags $CHROME_DEV_FLAGS
39+
append_flags "$CHROME_DEV_FLAGS"
4040
fi
4141
if [ -n "$CHROME_REMOVE_FLAGS" ]; then
4242
einfo "remove flags: ${CHROME_DEV_FLAGS}"
43-
remove_flags $CHROME_REMOVE_FLAGS
43+
remove_flags "$CHROME_REMOVE_FLAGS"
4444
fi
4545
}
4646

project-cros-pi/make.conf

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
USE="${USE} tpm_fallback"
22
COLLISION_IGNORE="/etc/chrome_dev.conf"
33
FEATURES="-collision-protect -collision-detect -protect-owned -sandbox -usersandbox"
4-
CHROME_DEV_FLAGS="${CHROME_DEV_FLAGS} --load-media-router-component-extension=1 --enable-features=UseAlternateVideoDecoderImplementation"
5-
#CHROME_DEV_FLAGS="${CHROME_DEV_FLAGS} --fydeos-force-cursor-compositing"
4+
CHROME_DEV_FLAGS="${CHROME_DEV_FLAGS}
5+
--load-media-router-component-extension=1
6+
--fydeos-force-show-cursor
7+
--enable-rpi-video-decoder
8+
--no-sandbox
9+
--use-legacy-plane-manager"

0 commit comments

Comments
 (0)