Subversion Repositories freemyipod

Rev

Rev 881 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
530 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
660 theseven 39
.global f_mkfat32_emcorelib
530 theseven 40
 
41
 
42
background_png_size:
43
.word background_png_end - background_png
44
 
45
darkener_png_size:
46
.word darkener_png_end - darkener_png
47
 
48
disclaimer_png_size:
49
.word disclaimer_png_end - disclaimer_png
50
 
51
actions_png_size:
52
.word actions_png_end - actions_png
53
 
54
 
55
flashscript:
56
 
57
.byte 0
58
.byte 0
59
.byte 0
60
.byte 1
61
.word f_png_emcorelib
62
.word f_png_emcorelib_end - f_png_emcorelib
63
.ascii "libpng  "
64
 
65
.byte 0
66
.byte 2
67
.byte 0
68
.byte 1
69
.word f_umsboot_ipodclassic_ucl
70
.word f_umsboot_ipodclassic_ucl_end - f_umsboot_ipodclassic_ucl
71
.ascii "umsboot "
72
 
73
.byte 0
74
.byte 12
75
.byte 8
76
.byte 1
77
.word f_emcoreldr_ipodclassic_bin
78
.word f_emcoreldr_ipodclassic_bin_end - f_emcoreldr_ipodclassic_bin
79
 
80
.byte 0
81
.byte 2
82
.byte 0
83
.byte 1
84
.word f_emcore_ipodclassic_ucl
85
.word f_emcore_ipodclassic_ucl_end - f_emcore_ipodclassic_ucl
86
.ascii "emcore  "
87
 
88
.byte 0
89
.byte 0
90
.byte 0
91
.byte 1
881 theseven 92
.word f_boot_emcorelib
93
.word f_boot_emcorelib_end - f_boot_emcorelib
94
.ascii "libboot "
95
 
96
.byte 0
97
.byte 0
98
.byte 0
99
.byte 1
530 theseven 100
.word f_ui_emcorelib
101
.word f_ui_emcorelib_end - f_ui_emcorelib
102
.ascii "libui   "
103
 
104
.byte 0
105
.byte 0
106
.byte 0
107
.byte 1
660 theseven 108
.word f_mkfat32_emcorelib
109
.word f_mkfat32_emcorelib_end - f_mkfat32_emcorelib
110
.ascii "libmkf32"
111
 
112
.byte 0
113
.byte 0
114
.byte 0
115
.byte 1
530 theseven 116
.word f_bootmenu_ipodclassic_emcoreapp
117
.word f_bootmenu_ipodclassic_emcoreapp_end - f_bootmenu_ipodclassic_emcoreapp
118
.ascii "bootmenu"
119
 
120
.byte 0
919 user890104 121
.byte 0
122
.byte 0
123
.byte 1
124
.word f_diskmode_emcoreapp
125
.word f_diskmode_emcoreapp_end - f_diskmode_emcoreapp
126
.ascii "diskmode"
127
 
128
.byte 0
530 theseven 129
.byte 2
130
.byte 0
131
.byte 1
132
.word f_rockbox_ipod_ucl
133
.word f_rockbox_ipod_ucl_end - f_rockbox_ipod_ucl
134
.ascii "rockbox "
135
 
136
.word 0
137
 
138
 
139
firstinstcost:
140
.word 0
668 theseven 141
commoncost:
843 theseven 142
.word 5
530 theseven 143
 
668 theseven 144
firstinstscript:
530 theseven 145
commonscript:
843 theseven 146
.word 1
147
.word apps_dirname
148
.word 1
149
 
150
.word 1
151
.word bootmenu_dirname
152
.word 1
153
 
154
.word 4
155
.word theme_emcoreapp_filename
156
.word f_theme_emcoreapp
157
.word f_theme_emcoreapp_end - f_theme_emcoreapp
158
.word 3
159
 
530 theseven 160
.word 0
161
 
162
 
163
background_png:
164
.incbin "oobe/background.png"
165
background_png_end:
166
 
167
darkener_png:
168
.incbin "oobe/darkener.png"
169
darkener_png_end:
170
 
171
disclaimer_png:
172
.incbin "oobe/disclaimer.png"
173
disclaimer_png_end:
174
 
175
actions_png:
176
.incbin "oobe/actions.png"
177
actions_png_end:
178
 
843 theseven 179
apps_dirname:
180
.ascii "/.apps\0"
181
 
182
bootmenu_dirname:
183
.ascii "/.apps/bootmenu\0"
184
 
185
theme_emcoreapp_filename:
186
.ascii "/.apps/bootmenu/theme.emcoreapp\0"
187
 
530 theseven 188
.align 4
189
f_boot_emcorelib:
190
.incbin "flashfiles/boot.emcorelib"
191
f_boot_emcorelib_end:
192
 
193
.align 4
194
f_png_emcorelib:
195
.incbin "flashfiles/png.emcorelib"
196
f_png_emcorelib_end:
197
 
198
.align 4
199
f_ui_emcorelib:
200
.incbin "flashfiles/ui.emcorelib"
201
f_ui_emcorelib_end:
202
 
203
.align 4
660 theseven 204
f_mkfat32_emcorelib:
205
.incbin "flashfiles/mkfat32.emcorelib"
206
f_mkfat32_emcorelib_end:
207
 
208
.align 4
530 theseven 209
f_bootmenu_ipodclassic_emcoreapp:
210
.incbin "flashfiles/bootmenu-ipodclassic.emcoreapp"
211
f_bootmenu_ipodclassic_emcoreapp_end:
212
 
213
.align 4
919 user890104 214
f_diskmode_emcoreapp:
215
.incbin "flashfiles/diskmode.emcoreapp"
216
f_diskmode_emcoreapp_end:
217
 
218
.align 4
530 theseven 219
f_umsboot_ipodclassic_ucl:
220
.incbin "flashfiles/umsboot-ipodclassic.ucl"
221
f_umsboot_ipodclassic_ucl_end:
222
 
223
.align 4
224
f_rockbox_ipod_ucl:
225
.incbin "flashfiles/rockbox.ipod.ucl"
226
f_rockbox_ipod_ucl_end:
227
 
228
.align 4
229
f_emcore_ipodclassic_ucl:
230
.incbin "flashfiles/emcore-ipodclassic.ucl"
231
f_emcore_ipodclassic_ucl_end:
232
 
233
.align 4
234
f_emcoreldr_ipodclassic_bin:
235
.incbin "flashfiles/emcoreldr-ipodclassic.bin"
236
f_emcoreldr_ipodclassic_bin_end:
237
 
843 theseven 238
.align 4
239
f_theme_emcoreapp:
240
.incbin "fsfiles/.apps/bootmenu/theme.emcoreapp"
241
f_theme_emcoreapp_end:
242
 
881 theseven 243
.align 2