Skip to content

Commit 2b39537

Browse files
committed
sources/firmware: add RWL support for ADL-N
Signed-off-by: Matt DeVillier <[email protected]>
1 parent abb1657 commit 2b39537

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

firmware.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ elif [ "$isGlk" = true ]; then
5757
rwlegacy_file=$rwl_altfw_glk
5858
elif [ "$isAdl" = true ]; then
5959
rwlegacy_file=$rwl_altfw_adl
60+
elif [ "$isAdlN" = true ]; then
61+
rwlegacy_file=$rwl_altfw_adl_n
6062
elif [ "$isMdn" = true ]; then
6163
rwlegacy_file=$rwl_altfw_mdn
6264
else

functions.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -917,10 +917,13 @@ esac
917917
|| "$isKbl" = true || "$isStr" = true || "$isWhl" = true \
918918
|| "$isGlk" = true || "$isCml" = true || "$isPco" = true \
919919
|| "$isJsl" = true || "$isTgl" = true || "$isAdl" = true \
920-
|| "$isCzn" = true || "$isMdn" = true ]] || isUnsupported=true
920+
|| "$isCzn" = true || "$isMdn" = true || "$isAdlN" = true ]] || isUnsupported=true
921921
[[ "$isHswBox" = true || "$isBdwBox" = true || "${kbl_boxes[@]}" =~ "$device" \
922922
|| "$device" = "ninja" || "$device" = "buddy" ]] && hasLAN=true
923-
[[ "$isKbl" = true || "$isApl" = true || "$isGlk" = true ]] && hasCR50=true
923+
[[ "$isApl" = true || "$isKbl" = true || "$isStr" = true || "$isWhl" = true \
924+
|| "$isGlk" = true || "$isCml" = true || "$isPco" = true \
925+
|| "$isJsl" = true || "$isTgl" = true || "$isAdl" = true \
926+
|| "$isCzn" = true || "$isMdn" = true || "$isAdlN" = true ]] && hasCR50=true
924927
[[ "$device" = "rammus" || "$isGlk" = true ]] && useAltfwStd=true
925928
[[ "${eol_devices[@]}" =~ "$device" ]] && isEOL=true || isEOL=false
926929

sources.sh

Lines changed: 2 additions & 1 deletion
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="[2023-08-28]"
6+
export script_date="[2023-08-29]"
77

88
#where the stuff is
99
export util_source="https://www.mrchromebox.tech/files/util/"
@@ -279,6 +279,7 @@ export rwl_altfw_jsl="rwl_altfw_jsl-mrchromebox_20211115.bin"
279279
export rwl_altfw_pco="rwl_altfw_pco-mrchromebox_20210623.bin"
280280
export rwl_altfw_tgl="rwl_altfw_tgl-mrchromebox_20210827.bin"
281281
export rwl_altfw_adl="rwl_altfw_adl-mrchromebox_20230509.bin"
282+
export rwl_altfw_adl_n="rwl_altfw_adl_n-mrchromebox_20230829.bin"
282283
export rwl_altfw_mdn="rwl_altfw_mdn-mrchromebox_20230727.bin"
283284

284285
#hsw/bdw headless VBIOS

0 commit comments

Comments
 (0)