Skip to content

Commit 2cf432b

Browse files
committed
embed HDMI v102, 103, 104
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 7eb887c commit 2cf432b

File tree

5 files changed

+27
-0
lines changed

5 files changed

+27
-0
lines changed

Makefile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ linux:
1717
env FWK_DP_HDMI_BIN=hdmi-flash-006 cargo build --release
1818
cp target/release/framework_tool out/hdmi_update_006
1919

20+
env FWK_DP_HDMI_BIN=hdmi-flash-102 cargo build --release
21+
cp target/release/framework_tool out/hdmi_update_102
22+
23+
env FWK_DP_HDMI_BIN=hdmi-flash-103 cargo build --release
24+
cp target/release/framework_tool out/hdmi_update_103
25+
26+
env FWK_DP_HDMI_BIN=hdmi-flash-104 cargo build --release
27+
cp target/release/framework_tool out/hdmi_update_104
28+
2029
env FWK_DP_HDMI_BIN=hdmi-flash-105 cargo build --release
2130
cp target/release/framework_tool out/hdmi_update_105
2231

@@ -41,5 +50,14 @@ windows:
4150
env FWK_DP_HDMI_BIN=hdmi-flash-006 cargo build --release --no-default-features --features "windows"
4251
cp target/release/framework_tool.exe out/hdmi_update_006.exe
4352

53+
env FWK_DP_HDMI_BIN=hdmi-flash-102 cargo build --release --no-default-features --features "windows"
54+
cp target/release/framework_tool.exe out/hdmi_update_102.exe
55+
56+
env FWK_DP_HDMI_BIN=hdmi-flash-103 cargo build --release --no-default-features --features "windows"
57+
cp target/release/framework_tool.exe out/hdmi_update_103.exe
58+
59+
env FWK_DP_HDMI_BIN=hdmi-flash-104 cargo build --release --no-default-features --features "windows"
60+
cp target/release/framework_tool.exe out/hdmi_update_104.exe
61+
4462
env FWK_DP_HDMI_BIN=hdmi-flash-105 cargo build --release --no-default-features --features "windows"
4563
cp target/release/framework_tool.exe out/hdmi_update_105.exe
116 KB
Binary file not shown.
116 KB
Binary file not shown.
116 KB
Binary file not shown.

framework_tool/src/main.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ fn main() {
1515
"hdmi-flash-006" => {
1616
include_bytes!("../../framework_lib/embed_bins/hdmi-flash-006.bin").as_slice()
1717
}
18+
"hdmi-flash-102" => {
19+
include_bytes!("../../framework_lib/embed_bins/hdmi-flash-102.bin").as_slice()
20+
}
21+
"hdmi-flash-103" => {
22+
include_bytes!("../../framework_lib/embed_bins/hdmi-flash-103.bin").as_slice()
23+
}
24+
"hdmi-flash-104" => {
25+
include_bytes!("../../framework_lib/embed_bins/hdmi-flash-104.bin").as_slice()
26+
}
1827
"hdmi-flash-105" => {
1928
include_bytes!("../../framework_lib/embed_bins/hdmi-flash-105.bin").as_slice()
2029
}

0 commit comments

Comments
 (0)