| | 14 | |
| | 15 | == Problems that may arise due to old data == |
| | 16 | * The major issue is the loss of raw imfiles due to now-resolved problems in the shuffle code. If a chip imfile continually fails, and `neb-repair` notes that the raw file is "consistent" (this is mentioned in the chip stage log file), the file is probably corrupt. This can be verified by running `neb-stat --validate`, and checking that there are no good instances of this file anymore. To remove this file from processing, and to mark it as bad to prevent future processing, do the following commands: |
| | 17 | {{{ |
| | 18 | chiptool -updateprocessedimfile -set_state full -chip_id CHIP_ID -class_id CLASS_ID |
| | 19 | chiptool -updateprocessedimfile -fault 0 -set_quality 42 -chip_id CHIP_ID -class_id CLASS_ID |
| | 20 | regtool -updateprocessedimfile -set_state corrupt -class_id CLASS_ID -exp_id EXP_ID |
| | 21 | }}} |
| | 22 | |