forked from MrChromebox/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsources.sh
146 lines (130 loc) · 7.94 KB
/
sources.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/bin/bash
#
#define these here for easy updating
export script_date="[2020-12-22]"
#where the stuff is
export util_source="https://www.mrchromebox.tech/files/util/"
export rwlegacy_source="https://www.mrchromebox.tech/files/firmware/rw_legacy/"
export bootstub_source="https://www.mrchromebox.tech/files/firmware/boot_stub/"
export fullrom_source="https://www.mrchromebox.tech/files/firmware/full_rom/"
export shellball_source="https://www.mrchromebox.tech/files/firmware/shellball/"
export cbfs_source="https://www.mrchromebox.tech/files/firmware/cbfs/"
export other_source="https://www.mrchromebox.tech/files/firmware/other/"
#LE sources
export LE_url_official="http://releases.libreelec.tv/"
export LE_url=${LE_url_official}
export chrx_url="https://chrx.org/go"
#LE version
export LE_version_base="LibreELEC-Generic.x86_64"
export LE_version_stable="9.2.6"
export LE_version_latest="9.2.6"
#syslinux version
export syslinux_version="syslinux-6.04-pre1"
#UEFI Full ROMs
#SNB/IVB
export coreboot_uefi_butterfly="coreboot_tiano-butterfly-mrchromebox_20200604.rom"
export coreboot_uefi_lumpy="coreboot_tiano-lumpy-mrchromebox_20200604.rom"
export coreboot_uefi_link="coreboot_tiano-link-mrchromebox_20200604.rom"
export coreboot_uefi_parrot="coreboot_tiano-parrot-mrchromebox_20200604.rom"
export coreboot_uefi_stout="coreboot_tiano-stout-mrchromebox_20200604.rom"
export coreboot_uefi_stumpy="coreboot_tiano-stumpy-mrchromebox_20200604.rom"
#Haswell
export coreboot_uefi_falco="coreboot_tiano-falco-mrchromebox_20200604.rom"
export coreboot_uefi_leon="coreboot_tiano-leon-mrchromebox_20200604.rom"
export coreboot_uefi_mccloud="coreboot_tiano-mccloud-mrchromebox_20200618.rom"
export coreboot_uefi_monroe="coreboot_tiano-monroe-mrchromebox_20200604.rom"
export coreboot_uefi_panther="coreboot_tiano-panther-mrchromebox_20200618.rom"
export coreboot_uefi_peppy="coreboot_tiano-peppy-mrchromebox_20200604.rom"
export coreboot_uefi_peppy_elan="coreboot_tiano-peppy_elan-mrchromebox_20200604.rom"
export coreboot_uefi_tricky="coreboot_tiano-tricky-mrchromebox_20200618.rom"
export coreboot_uefi_wolf="coreboot_tiano-wolf-mrchromebox_20200604.rom"
export coreboot_uefi_zako="coreboot_tiano-zako-mrchromebox_20200618.rom"
#Broadwell
export coreboot_uefi_auron_paine="coreboot_tiano-auron_paine-mrchromebox_20200604.rom"
export coreboot_uefi_auron_yuna="coreboot_tiano-auron_yuna-mrchromebox_20200604.rom"
export coreboot_uefi_buddy="coreboot_tiano-buddy-mrchromebox_20200604.rom"
export coreboot_uefi_gandof="coreboot_tiano-gandof-mrchromebox_20200604.rom"
export coreboot_uefi_guado="coreboot_tiano-guado-mrchromebox_20200604.rom"
export coreboot_uefi_lulu="coreboot_tiano-lulu-mrchromebox_20200604.rom"
export coreboot_uefi_rikku="coreboot_tiano-rikku-mrchromebox_20200604.rom"
export coreboot_uefi_samus="coreboot_tiano-samus-mrchromebox_20200604.rom"
export coreboot_uefi_tidus="coreboot_tiano-tidus-mrchromebox_20200604.rom"
#Baytrail
export coreboot_uefi_banjo="coreboot_tiano-banjo-mrchromebox_20200604.rom"
export coreboot_uefi_candy="coreboot_tiano-candy-mrchromebox_20200604.rom"
export coreboot_uefi_clapper="coreboot_tiano-clapper-mrchromebox_20200604.rom"
export coreboot_uefi_enguarde="coreboot_tiano-enguarde-mrchromebox_20200604.rom"
export coreboot_uefi_glimmer="coreboot_tiano-glimmer-mrchromebox_20200604.rom"
export coreboot_uefi_gnawty="coreboot_tiano-gnawty-mrchromebox_20200604.rom"
export coreboot_uefi_heli="coreboot_tiano-heli-mrchromebox_20200604.rom"
export coreboot_uefi_kip="coreboot_tiano-kip-mrchromebox_20200604.rom"
export coreboot_uefi_ninja="coreboot_tiano-ninja-mrchromebox_20200604.rom"
export coreboot_uefi_orco="coreboot_tiano-orco-mrchromebox_20200604.rom"
export coreboot_uefi_quawks="coreboot_tiano-quawks-mrchromebox_20200604.rom"
export coreboot_uefi_squawks="coreboot_tiano-squawks-mrchromebox_20200604.rom"
export coreboot_uefi_sumo="coreboot_tiano-sumo-mrchromebox_20200604.rom"
export coreboot_uefi_swanky="coreboot_tiano-swanky-mrchromebox_20200604.rom"
export coreboot_uefi_winky="coreboot_tiano-winky-mrchromebox_20200604.rom"
#Braswell
export coreboot_uefi_banon="coreboot_tiano-banon-mrchromebox_20200606.rom"
export coreboot_uefi_celes="coreboot_tiano-celes-mrchromebox_20200606.rom"
export coreboot_uefi_cyan="coreboot_tiano-cyan-mrchromebox_20200606.rom"
export coreboot_uefi_edgar="coreboot_tiano-edgar-mrchromebox_20200606.rom"
export coreboot_uefi_kefka="coreboot_tiano-kefka-mrchromebox_20200606.rom"
export coreboot_uefi_reks="coreboot_tiano-reks-mrchromebox_20200606.rom"
export coreboot_uefi_relm="coreboot_tiano-relm-mrchromebox_20200606.rom"
export coreboot_uefi_setzer="coreboot_tiano-setzer-mrchromebox_20200606.rom"
export coreboot_uefi_terra="coreboot_tiano-terra-mrchromebox_20200606.rom"
export coreboot_uefi_ultima="coreboot_tiano-ultima-mrchromebox_20200606.rom"
export coreboot_uefi_wizpig="coreboot_tiano-wizpig-mrchromebox_20200606.rom"
#Skylake
export coreboot_uefi_asuka="coreboot_tiano-asuka-mrchromebox_20200604.rom"
export coreboot_uefi_caroline="coreboot_tiano-caroline-mrchromebox_20200604.rom"
export coreboot_uefi_cave="coreboot_tiano-cave-mrchromebox_20200604.rom"
export coreboot_uefi_chell="coreboot_tiano-chell-mrchromebox_20200604.rom"
export coreboot_uefi_lars="coreboot_tiano-lars-mrchromebox_20200604.rom"
export coreboot_uefi_sentry="coreboot_tiano-sentry-mrchromebox_20200604.rom"
#KabyLake
export coreboot_uefi_atlas="coreboot_tiano-atlas-mrchromebox_20200604.rom"
export coreboot_uefi_eve="coreboot_tiano-eve-mrchromebox_20200604.rom"
export coreboot_uefi_fizz="coreboot_tiano-fizz-mrchromebox_20200604.rom"
export coreboot_uefi_nami="coreboot_tiano-nami-mrchromebox_20200604.rom"
export coreboot_uefi_nautilus="coreboot_tiano-nautilus-mrchromebox_20200604.rom"
export coreboot_uefi_nocturne="coreboot_tiano-nocturne-mrchromebox_20200604.rom"
export coreboot_uefi_rammus="coreboot_tiano-rammus-mrchromebox_20200604.rom"
export coreboot_uefi_soraka="coreboot_tiano-soraka-mrchromebox_20200604.rom"
#Stoneyridge
export coreboot_uefi_aleena="coreboot_tiano-aleena-mrchromebox_20200604.rom"
export coreboot_uefi_barla="coreboot_tiano-barla-mrchromebox_20200604.rom"
export coreboot_uefi_careena="coreboot_tiano-careena-mrchromebox_20200604.rom"
export coreboot_uefi_kasumi="coreboot_tiano-kasumi-mrchromebox_20200604.rom"
export coreboot_uefi_liara="coreboot_tiano-liara-mrchromebox_20200604.rom"
export coreboot_uefi_treeya="coreboot_tiano-treeya-mrchromebox_20200707.rom"
#CometLake
#RW_LEGACY payloads
export seabios_link="seabios-link-mrchromebox_20180912.bin"
export seabios_hswbdw_box="seabios-hswbdw_box-mrchromebox_20180912.bin"
export seabios_hswbdw_book="seabios-hswbdw_book-mrchromebox_20180912.bin"
export seabios_baytrail="seabios-byt-mrchromebox_20180912.bin"
export seabios_braswell="seabios-bsw-mrchromebox_20180912.bin"
export seabios_skylake="seabios-skl-mrchromebox_20180912.bin"
export seabios_apl="seabios-apl-mrchromebox_20180912.bin"
export seabios_kbl="seabios-kbl-mrchromebox_20200223.bin"
export seabios_kbl_18="seabios-kbl_18-mrchromebox_20200223.bin"
export rwl_altfw_stoney="rwl_altfw_stoney-mrchromebox_20200107.bin"
export rwl_altfw_whl="rwl_altfw_whl-mrchromebox_20201017.bin"
export rwl_altfw_cml="rwl_altfw_cml-mrchromebox_20201126.bin"
#hsw/bdw headless VBIOS
export hswbdw_headless_vbios="hswbdw_vgabios_1040_cbox_headless.dat"
#PXE ROM for Chromeboxes w/RTL81xx ethernet
export pxe_optionrom="10ec8168.rom"
#Non-ChromeOS devices
export coreboot_uefi_librem13v1="coreboot_tiano-librem13v1-mrchromebox_20200604.rom"
export coreboot_uefi_librem13v2="coreboot_tiano-librem13v2-mrchromebox_20200604.rom"
export coreboot_uefi_librem13v4="coreboot_tiano-librem13v4-mrchromebox_20200604.rom"
export coreboot_uefi_librem15v2="coreboot_tiano-librem15v2-mrchromebox_20200604.rom"
export coreboot_uefi_librem15v3="coreboot_tiano-librem15v3-mrchromebox_20200604.rom"
export coreboot_uefi_librem15v4="coreboot_tiano-librem15v4-mrchromebox_20200604.rom"
export coreboot_uefi_librem_mini="coreboot_tiano-librem_mini-mrchromebox_20200718.rom"
# other
export touchpad_eve_fw="rose_v1.1.8546-ee1861e9e.bin"