Subversion Repositories freemyipod

Rev

Rev 672 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
551 theseven 1
//
2
//
3
//    Copyright 2011 TheSeven
4
//
5
//
6
//    This file is part of emCORE.
7
//
8
//    emCORE is free software: you can redistribute it and/or
9
//    modify it under the terms of the GNU General Public License as
10
//    published by the Free Software Foundation, either version 2 of the
11
//    License, or (at your option) any later version.
12
//
13
//    emCORE is distributed in the hope that it will be useful,
14
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16
//    See the GNU General Public License for more details.
17
//
18
//    You should have received a copy of the GNU General Public License along
19
//    with emCORE.  If not, see <http://www.gnu.org/licenses/>.
20
//
21
//
22
 
23
 
24
.global background_png
25
.global background_png_size
26
.global darkener_png
27
.global darkener_png_size
28
.global disclaimer_png
29
.global disclaimer_png_size
30
.global actions_png
31
.global actions_png_size
32
.global flashscript
33
.global firstinstcost
34
.global firstinstscript
35
.global commoncost
36
.global commonscript
37
.global f_png_emcorelib
38
.global f_ui_emcorelib
39
 
40
 
41
background_png_size:
42
.word background_png_end - background_png
43
 
44
darkener_png_size:
45
.word darkener_png_end - darkener_png
46
 
47
disclaimer_png_size:
48
.word disclaimer_png_end - disclaimer_png
49
 
50
actions_png_size:
51
.word actions_png_end - actions_png
52
 
53
 
54
flashscript:
55
 
56
.byte 1
57
.byte 1
58
.byte 0
59
.byte 1
60
.ascii "diskmode"
61
 
62
.byte 2
63
.byte 1
64
.byte 0
65
.byte 1
66
.ascii "diagmode"
67
 
68
.byte 0
69
.byte 0
70
.byte 0
71
.byte 1
72
.word f_boot_emcorelib
73
.word f_boot_emcorelib_end - f_boot_emcorelib
74
.ascii "libboot "
75
 
76
.byte 0
77
.byte 0
78
.byte 0
79
.byte 1
80
.word f_png_emcorelib
81
.word f_png_emcorelib_end - f_png_emcorelib
82
.ascii "libpng  "
83
 
84
.byte 0
85
.byte 2
86
.byte 0
87
.byte 1
88
.word f_umsboot_ipodnano2g_ucl
89
.word f_umsboot_ipodnano2g_ucl_end - f_umsboot_ipodnano2g_ucl
90
.ascii "umsboot "
91
 
92
.byte 0
93
.byte 4
94
.byte 8
95
.byte 1
96
.word f_emcoreldr_ipodnano2g_dfu
97
.word f_emcoreldr_ipodnano2g_dfu_end - f_emcoreldr_ipodnano2g_dfu
98
 
99
.byte 0
100
.byte 4
101
.byte 10
102
.byte 1
103
.word f_emcore_ipodnano2g_ucl
104
.word f_emcore_ipodnano2g_ucl_end - f_emcore_ipodnano2g_ucl
105
 
106
.byte 0
107
.byte 0
108
.byte 0
109
.byte 1
110
.word f_ui_emcorelib
111
.word f_ui_emcorelib_end - f_ui_emcorelib
112
.ascii "libui   "
113
 
114
.byte 0
115
.byte 0
116
.byte 0
117
.byte 1
118
.word f_bootmenu_ipodnano2g_emcoreapp
119
.word f_bootmenu_ipodnano2g_emcoreapp_end - f_bootmenu_ipodnano2g_emcoreapp
120
.ascii "bootmenu"
121
 
122
.byte 0
123
.byte 0
124
.byte 0
125
.byte 1
126
.word f_background_png
127
.word f_background_png_end - f_background_png
128
.ascii "backgrnd"
129
 
130
.byte 0
131
.byte 0
132
.byte 0
133
.byte 1
134
.word f_icons_png
135
.word f_icons_png_end - f_icons_png
136
.ascii "iconset "
137
 
138
.byte 0
139
.byte 0
140
.byte 0
141
.byte 1
142
.word f_rockbox_png
143
.word f_rockbox_png_end - f_rockbox_png
144
.ascii "rbxlogo "
145
 
146
.byte 0
147
.byte 0
148
.byte 0
149
.byte 1
150
.word f_crapple_png
151
.word f_crapple_png_end - f_crapple_png
152
.ascii "crapple "
153
 
154
.word 0
155
 
156
 
157
firstinstcost:
158
.word 0
159
firstinstscript:
160
.word 0
161
 
162
commoncost:
163
.word 11
164
commonscript:
165
.word 1
166
.word boot_dirname
167
.word 1
168
.word 2
169
.word ofw_filename
170
.word 0xffffffff
171
.word 0
172
.word 10
173
.word 0
174
 
175
 
176
background_png:
177
.incbin "oobe/background.png"
178
background_png_end:
179
 
180
darkener_png:
181
.incbin "oobe/darkener.png"
182
darkener_png_end:
183
 
184
disclaimer_png:
185
.incbin "oobe/disclaimer.png"
186
disclaimer_png_end:
187
 
188
actions_png:
189
.incbin "oobe/actions.png"
190
actions_png_end:
191
 
192
boot_dirname:
193
.ascii "/.boot\0"
194
 
195
ofw_filename:
196
.ascii "/.boot/appleos.bin\0"
197
 
198
.align 4
199
f_background_png:
200
.incbin "flashfiles/background.png"
201
f_background_png_end:
202
 
203
.align 4
204
f_icons_png:
205
.incbin "flashfiles/icons.png"
206
f_icons_png_end:
207
 
208
.align 4
209
f_rockbox_png:
210
.incbin "flashfiles/rockbox.png"
211
f_rockbox_png_end:
212
 
213
.align 4
214
f_crapple_png:
215
.incbin "flashfiles/crapple.png"
216
f_crapple_png_end:
217
 
218
.align 4
219
f_boot_emcorelib:
220
.incbin "flashfiles/boot.emcorelib"
221
f_boot_emcorelib_end:
222
 
223
.align 4
224
f_png_emcorelib:
225
.incbin "flashfiles/png.emcorelib"
226
f_png_emcorelib_end:
227
 
228
.align 4
229
f_ui_emcorelib:
230
.incbin "flashfiles/ui.emcorelib"
231
f_ui_emcorelib_end:
232
 
233
.align 4
234
f_bootmenu_ipodnano2g_emcoreapp:
235
.incbin "flashfiles/bootmenu-ipodnano2g.emcoreapp"
236
f_bootmenu_ipodnano2g_emcoreapp_end:
237
 
238
.align 4
239
f_umsboot_ipodnano2g_ucl:
240
.incbin "flashfiles/umsboot-ipodnano2g.ucl"
241
f_umsboot_ipodnano2g_ucl_end:
242
 
243
.align 4
244
f_emcore_ipodnano2g_ucl:
245
.incbin "flashfiles/emcore-ipodnano2g.ucl"
246
f_emcore_ipodnano2g_ucl_end:
247
 
248
.align 4
249
f_emcoreldr_ipodnano2g_dfu:
250
.incbin "flashfiles/emcoreldr-ipodnano2g.dfu"
251
f_emcoreldr_ipodnano2g_dfu_end:
252
 
253
.align 2