Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Welcome to the Rockbox Technical Forums!

+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Hardware
| | |-+  Clip Zip is semi-bricked! D:
« previous next »
  • Print
Pages: [1] 2

Author Topic: Clip Zip is semi-bricked! D:  (Read 3106 times)

Offline thejerwin

  • Member
  • *
  • Posts: 3
Clip Zip is semi-bricked! D:
« on: September 11, 2015, 06:45:37 PM »
I recently installed Rockbox on my Clip Zip, because the Sansa logo was freezing on the screen at startup. Now, in the stock firmware, I removed my Sandisk Micro SD while refreshing the media, and now the player will not boot past the Rockbox, or Sansa logo. Can anyone tell me how to fix this?  :(
Logged

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #1 on: September 12, 2015, 05:14:39 AM »
When player off - try hold select (middle button) and connect it to usb. Then try check disk for errors.


P.S. Somebody knows: is it possible add fsck.vfat to bootloader?
« Last Edit: September 12, 2015, 05:21:30 AM by Mihail Zenkov »
Logged

Offline [Saint]

  • Rockbox Expert
  • Member
  • *
  • Posts: 1662
  • Hayden Pearce
    • Google+
Re: Clip Zip is semi-bricked! D:
« Reply #2 on: September 13, 2015, 06:37:35 PM »
Quote from: Mihail Zenkov on September 12, 2015, 05:14:39 AM
P.S. Somebody knows: is it possible add fsck.vfat to bootloader?

No.


[Saint]
Logged
Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #3 on: September 13, 2015, 07:29:28 PM »
Why? Not enough space for it?
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: Clip Zip is semi-bricked! D:
« Reply #4 on: September 13, 2015, 08:24:45 PM »
The bootloader on AMS devices is compressed into the patched firmware, so the maximum size is very limited.   How big would a file system check be?  It might not fit. 
Logged

Offline [Saint]

  • Rockbox Expert
  • Member
  • *
  • Posts: 1662
  • Hayden Pearce
    • Google+
Re: Clip Zip is semi-bricked! D:
« Reply #5 on: September 13, 2015, 09:49:14 PM »
It's not really a question of size, at least not specifically.

It's more a question of doing things right, and that filesystem scanning really just doesn't belong deeply embedded in the bootloader or Rockbox core.

The page I linked to (maybe you didn't realize my response was actually a url?) does explain that no one would object to a scandisk plugin, but that would only be useful in a very specific set of circumstances. Specific enough to make it basically irrelevant.  You could pretty much only use it if the device had removable storage and it was the removable storage that was known to be corrupt.

How can you trust a scandisk tool to repair the storage volume it itself resides on? How can you know that it is itself intact?

There's also the question of efficiency. If you have a digital audio player, you have a host in order to transfer media to it (and install Rockbox with!), and that host is infinitely better suited to performing a filesystem scan/recovery than a DAP is.


[Saint]
Logged
Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #6 on: September 14, 2015, 06:53:22 AM »
Quote from: [Saint] on September 13, 2015, 09:49:14 PM
How can you trust a scandisk tool to repair the storage volume it itself resides on? How can you know that it is itself intact?
Thats why I suggested add scandisk tool to bootloader.
But probably you right - we need it no too often.

In any case we have too many same post from users. It very bad user experience when player just freeze on boot. Probably we should add some more checks on boot to prevent this. And in case error show message something like "FS corrupted. Please connect usb and check disk for error.".

Another question: can we add sd card support in bootloader and boot from sd card when main disk not available?
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: Clip Zip is semi-bricked! D:
« Reply #7 on: September 14, 2015, 12:13:09 PM »
Quote from: [Saint] on September 13, 2015, 09:49:14 PM
How can you trust a scandisk tool to repair the storage volume it itself resides on? How can you know that it is itself intact?

The bootloader doesn't exist on the file system, so thats why you'd put the tool there.  But I'm not sure its feasible. 

Quote from: Mihail Zenkov on September 14, 2015, 06:53:22 AM
Another question: can we add sd card support in bootloader and boot from sd card when main disk not available?

If you could detect that the file system was corrupted, yes you could do that, however most people wouldn't have a second rockbox install or even an SD card, so I'm not sure how useful it would be.  Detecting a bad file system might be better handled by telling the user to plug in USB and then automatically mounting the file system.
Logged

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #8 on: September 14, 2015, 03:59:03 PM »
Quote from: saratoga on September 14, 2015, 12:13:09 PM
If you could detect that the file system was corrupted, yes you could do that, however most people wouldn't have a second rockbox install or even an SD card, so I'm not sure how useful it would be.  Detecting a bad file system might be better handled by telling the user to plug in USB and then automatically mounting the file system.

I mean another case - when main disk (flash) have hardware issue. In this case user can write rockbox to sd card and continue using player.
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: Clip Zip is semi-bricked! D:
« Reply #9 on: September 14, 2015, 04:30:04 PM »
Oh yes that could be done.  However, the bootloader is loaded from the main internal storage, so if the NAND is really bad the player may not work at all. 
Logged

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #10 on: September 14, 2015, 04:47:05 PM »
AFAIK in most report about bricked sansa players bootloader still work but show 30MB flash drive.
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: Clip Zip is semi-bricked! D:
« Reply #11 on: September 14, 2015, 06:40:24 PM »
I think the 32 mb flash drive isn't actually on the nand though. Usually it contains nothing and cannot store data.
Logged

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #12 on: September 15, 2015, 04:29:21 AM »
But bootloader still work, right?
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: Clip Zip is semi-bricked! D:
« Reply #13 on: September 15, 2015, 11:19:33 AM »
I'm not 100% sure, but I think if you get the 32MB empty partition the NAND is totally unresponsive, meaning no bootloader at all.
Logged

Offline Mihail Zenkov

  • Developer
  • Member
  • *
  • Posts: 374
Re: Clip Zip is semi-bricked! D:
« Reply #14 on: September 15, 2015, 12:53:25 PM »
You right - system detect this flash drive as "SanDisk M200Plus", but bootloader should show "Rockbox Internal Storage".
Logged

  • Print
Pages: [1] 2
« previous next »
+  Rockbox Technical Forums
|-+  Support and General Use
| |-+  Hardware
| | |-+  Clip Zip is semi-bricked! D:
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.088 seconds with 15 queries.