Skip to content

Commit c7a3827

Browse files
committed
Update RWL for ADL, add support for "fixed" devices
Brya-based ADL boards with "fixed" stock firmware will use the adl_2 RWL image. Only difference is the byte ordering of the CBFS header. Signed-off-by: Matt DeVillier <[email protected]>
1 parent 6f242d7 commit c7a3827

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

firmware.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ function flash_rwlegacy()
4848
rwlegacy_file=$rwl_altfw_tgl
4949
elif [ "$isGlk" = true ]; then
5050
rwlegacy_file=$rwl_altfw_glk
51+
elif [ "$isAdl_2" = true ]; then
52+
rwlegacy_file=$rwl_altfw_adl_2
5153
elif [ "$isAdl" = true ]; then
5254
rwlegacy_file=$rwl_altfw_adl
5355
elif [ "$isAdlN" = true ]; then

functions.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ isMdn=false
4141
isJsl=false
4242
isTgl=false
4343
isAdl=false
44+
isAdl_2=false
4445
isAdlN=false
4546
isMtl=false
4647
isUnsupported=false
@@ -97,6 +98,7 @@ tgl=('chronicler' 'collis' 'copano' 'delbin' 'drobit' 'eldrid' 'elemi' 'lillipup
9798
adl=('anahera' 'brya' 'banshee' 'kano' 'crota' 'crota360' 'felwinter' 'gimble' 'marasov' 'mithrax' \
9899
'omnigul' 'osiris' 'primus' 'redrix' 'redrix4es' 'taeko' 'taniks' 'vell' 'volmar' 'zavala' \
99100
'constitution' 'gladios' 'kinox' 'kuldax' 'lisbon' 'moli')
101+
adl_2=('banshee' 'omnigul')
100102
adl_n=('anraggar' 'anraggar360' 'craask' 'craaskana' 'craaskbowl' 'craaskino' 'craaskov' 'craaskvin' 'craasneto' \
101103
'joxer' 'joxero' 'nereid' 'nirwin' 'nivviks' 'pujjo1e' 'pujjo' 'pujjoflex' 'pujjoteen' 'pujjoteen15w' \
102104
'quandiso' 'quandiso360' 'uldren' 'uldren360' 'xivu' 'xivu360' 'yahiko' 'yavijo' 'yaviks' \
@@ -1074,6 +1076,7 @@ diagnostic_report_set deviceCpuType.Name "$deviceCpuType"
10741076
[[ "${jsl[@]}" =~ "$device" ]] && isJsl=true
10751077
[[ "${tgl[@]}" =~ "$device" ]] && isTgl=true
10761078
[[ "${adl[@]}" =~ "$device" ]] && isAdl=true
1079+
[[ "${adl_2[@]}" =~ "$device" ]] && isAdl_2=true
10771080
[[ "${adl_n[@]}" =~ "$device" ]] && isAdlN=true
10781081
[[ "${mtl[@]}" =~ "$device" ]] && isMtl=true
10791082
[[ "${cml_boxes[@]}" =~ "$device" ]] && isCmlBox=true

sources.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
#define these here for easy updating
6-
export script_date="[2025-02-27]"
6+
export script_date="[2025-03-13]"
77

88
#where the stuff is
99
export util_source="https://www.mrchromebox.tech/files/util/"
@@ -344,7 +344,8 @@ export rwl_altfw_glk="rwl_altfw_glk-mrchromebox_20230110.bin"
344344
export rwl_altfw_jsl="rwl_altfw_jsl-mrchromebox_20211115.bin"
345345
export rwl_altfw_pco="rwl_altfw_pco-mrchromebox_20240412.bin"
346346
export rwl_altfw_tgl="rwl_altfw_tgl-mrchromebox_20240729.bin"
347-
export rwl_altfw_adl="rwl_altfw_adl-mrchromebox_20240417.bin"
347+
export rwl_altfw_adl="rwl_altfw_adl-mrchromebox_20250313.bin"
348+
export rwl_altfw_adl_2="rwl_altfw_adl_2-mrchromebox_20250313.bin"
348349
export rwl_altfw_adl_n="rwl_altfw_adl_n-mrchromebox_20230829.bin"
349350
export rwl_altfw_mtl="rwl_altfw_mtl-mrchromebox_20250307.bin"
350351
export rwl_altfw_mdn="rwl_altfw_mdn-mrchromebox_20230727.bin"

0 commit comments

Comments
 (0)