-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
131 lines (103 loc) · 5.35 KB
/
README
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
####################################################
# ROCKBOX CUSTOM BOOTLOADER
# by id10terror (www.id10terror.net)
# Sansa e200v1/e200r/c200v1
# Latest Release: v0.3 (11-09-10)
####################################################
DOWNLOAD LATEST RELEASE:
https://github.com/downloads/id10terror/RB-CBL/CBLv0.3-id10terror.zip
====================================================
INSTRUCTIONS for e200v1/c200v1:
====================================================
1. Download the Rockbox Utility:
http://download.rockbox.org/rbutil/win32/RockboxUtility-v1.2.8.zip
2. Using the Rockbox Utility, perform a Complete Installation.
3. Download the compiled CBL zip file and extract it somewhere on your computer.
4. Run the .exe file, and choose the option ‘i’ to install the modified bootloader.
5. Safely remove your device and reboot it.
6. Reconnect your Sansa and modify cbl.cfg to your liking.
7. Reboot Sansa while pressing the desired button. Press and hold button until text
appears on the screen.
====================================================
INSTRUCTIONS for e200r:
====================================================
** THIS IS ONLY FOR THE e200r(RHAPSODY) VERSION **
** You will first need to patch your bootloader. **
** If you have already patched your bootloader, then skip to STEP 2 **
STEP 1:
Follow the instructions posted here to patch your e200r bootloader:
http://www.rockbox.org/wiki/SansaE200RInstallation
STEP 2:
** ONLY After Patching your e200r bootloader proceed with the next steps **
1. Download a Sansa e200 build (v1 only) of Rockbox and unzip it to the root of your device.
Daily build can be downloaded here: http://build.rockbox.org/data/rockbox-sansae200.zip
2. Download the compiled CBL zip file and extract it somewhere on your computer.
3. Download the e200r original firmware and rename the pp5022.mi4 file to OF.mi4.
Link: http://mp3support.sandisk.com/firmware/rhapsody-1.0.2.165.zip
4. Boot up your e200r into the OF by holding the left button while powering up.
5. Connect the USB cable.
6. Open up the folder where you extracted the files.
7. Copy OF.mi4 (the one you just renamed) to the /System directory on your Sansa.
NOTE: the /System directory is hidden, so make sure your folder settings allow viewing
hidden files and folders.
8. Copy pp5022.mi4 from the extracted CBL zip e200r directory to the root of your device.
9. Copy cbl.cfg from the extracted CBL zip to the root of your Sansa.
10. Safely remove your device and press and continue holding the left button while you
disconnect the USB cable so that the device reboots into the OF.
11. Once the device reboots into the OF, you can release the left button. The OF will refresh
the database, display "Firmware upgrade in progress" and reboot your device.
12. Modify cbl.cfg to your liking.
13. Restart Sansa while pressing the desired button. Press and hold button until text appears
on the screen.
----------------------------------------------------
** TO UPDATE the e200r Custom Bootloader:
----------------------------------------------------
1. Boot up your e200r into the OF by holding the left button while powering up.
2. Copy pp5022.mi4 from the extracted e200r directory to the root of your device.
3. Safely remove your device and press and continue holding the left button while you
disconnect the USB cable so that the device reboots into the OF.
4. Once the device reboots into the OF, you can release the left button. The OF will refresh
the database, display "Firmware upgrade in progress" and reboot your device.
====================================================
Notes:
====================================================
* The LEFT button is reserved for booting into the Original Sansa firmware, same as always.
* rockbox.mi4 (used as the default firmware) — If you are already running a custom FW, I'd
suggest renaming the .mi4 file something else and recording it in your cbl.cfg file.
Then reinstall RB so that rockbox.mi4 is the original RB firmware.
* If you try to boot up a non-existent firmware image, the bootloader will let you know
it was not loaded and proceed to load the default firmware.
* If the config file (cbl.cfg) is not found it will use the default settings.
Defaults are: UP.mi4, DOWN.mi4, RIGHT.mi4, SELECT.mi4
* Use "#" to comment out a line. If the variable isn't set, the default will be used
for that button or firmware dir.
* If the firmware is found and loaded correctly, you should see a confirmation
“*** Firmware Loaded ***” message.
====================================================
SAMPLE cbl.cfg settings:
====================================================
cbl_fw_dir=/.rockbox/
btn_select=hermes4b.mi4
btn_up=PL3.mi4
btn_right=testFW.mi4
btn_down=hermesv3.mi4
----------------------------------------------------
====================================================
SAMPLE cbl.cfg with different FW dirs:
====================================================
cbl_fw_dir=/
btn_select=PS3/hermes4b.mi4
btn_up=PS3/PL3.mi4
btn_right=TEST/testFW.mi4
btn_down=.rockbox/hermesv3.mi4
----------------------------------------------------
====================================================
Change Log:
====================================================
v0.3
+ Support for Sansa e200r
+ User-configurable settings via cbl.cfg file
v0.2
+ Support for Sansa c200v1
v0.1
+ Support for Sansa e200v1