Linux command that is equivalent to uboot's nand erase.chip or old flash_eraseall
On occasion when changing partition size/numbers on my nand flash I will get the following error:
ubi0: attaching mtd4
ubi0 error: scan_peb: bad image sequence number 1463854777 in PEB 4080, expected 297061830
Erase counter header dump:
magic 0x55424923
version 1
ec 1
vid_hdr_offset 2048
data_offset 4096
image_seq 1463854777
hdr_crc 0xe0a08f70
erase counter header hexdump:
ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22
UBI error: cannot attach mtd4
UBI error: cannot initialize UBI, error -22
UBI init error 22
Please check, if the correct MTD partition is used (size big enough?)
I can fix it using the uboot nand erase.chip command and then flashing my rootfs again. I am looking for a way of doing the same command from linux (debian). The uboot nand erase.chip command was taken from flash_eraseall:
This code is ported from flash_eraseall.c from Linux mtd utils
I have tried flash_erase and I even tried writing all FF's to each partition using dd:
dd if=/dev/zero bs=1M count=100 | tr '00' '377' > file
Are there any linux options for doing an old flash_eraseall or Uboot nand erase.chip?
debian u-boot flash-memory
add a comment |
On occasion when changing partition size/numbers on my nand flash I will get the following error:
ubi0: attaching mtd4
ubi0 error: scan_peb: bad image sequence number 1463854777 in PEB 4080, expected 297061830
Erase counter header dump:
magic 0x55424923
version 1
ec 1
vid_hdr_offset 2048
data_offset 4096
image_seq 1463854777
hdr_crc 0xe0a08f70
erase counter header hexdump:
ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22
UBI error: cannot attach mtd4
UBI error: cannot initialize UBI, error -22
UBI init error 22
Please check, if the correct MTD partition is used (size big enough?)
I can fix it using the uboot nand erase.chip command and then flashing my rootfs again. I am looking for a way of doing the same command from linux (debian). The uboot nand erase.chip command was taken from flash_eraseall:
This code is ported from flash_eraseall.c from Linux mtd utils
I have tried flash_erase and I even tried writing all FF's to each partition using dd:
dd if=/dev/zero bs=1M count=100 | tr '00' '377' > file
Are there any linux options for doing an old flash_eraseall or Uboot nand erase.chip?
debian u-boot flash-memory
add a comment |
On occasion when changing partition size/numbers on my nand flash I will get the following error:
ubi0: attaching mtd4
ubi0 error: scan_peb: bad image sequence number 1463854777 in PEB 4080, expected 297061830
Erase counter header dump:
magic 0x55424923
version 1
ec 1
vid_hdr_offset 2048
data_offset 4096
image_seq 1463854777
hdr_crc 0xe0a08f70
erase counter header hexdump:
ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22
UBI error: cannot attach mtd4
UBI error: cannot initialize UBI, error -22
UBI init error 22
Please check, if the correct MTD partition is used (size big enough?)
I can fix it using the uboot nand erase.chip command and then flashing my rootfs again. I am looking for a way of doing the same command from linux (debian). The uboot nand erase.chip command was taken from flash_eraseall:
This code is ported from flash_eraseall.c from Linux mtd utils
I have tried flash_erase and I even tried writing all FF's to each partition using dd:
dd if=/dev/zero bs=1M count=100 | tr '00' '377' > file
Are there any linux options for doing an old flash_eraseall or Uboot nand erase.chip?
debian u-boot flash-memory
On occasion when changing partition size/numbers on my nand flash I will get the following error:
ubi0: attaching mtd4
ubi0 error: scan_peb: bad image sequence number 1463854777 in PEB 4080, expected 297061830
Erase counter header dump:
magic 0x55424923
version 1
ec 1
vid_hdr_offset 2048
data_offset 4096
image_seq 1463854777
hdr_crc 0xe0a08f70
erase counter header hexdump:
ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22
UBI error: cannot attach mtd4
UBI error: cannot initialize UBI, error -22
UBI init error 22
Please check, if the correct MTD partition is used (size big enough?)
I can fix it using the uboot nand erase.chip command and then flashing my rootfs again. I am looking for a way of doing the same command from linux (debian). The uboot nand erase.chip command was taken from flash_eraseall:
This code is ported from flash_eraseall.c from Linux mtd utils
I have tried flash_erase and I even tried writing all FF's to each partition using dd:
dd if=/dev/zero bs=1M count=100 | tr '00' '377' > file
Are there any linux options for doing an old flash_eraseall or Uboot nand erase.chip?
debian u-boot flash-memory
debian u-boot flash-memory
asked 4 hours ago
cajjedcajjed
408
408
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f507580%2flinux-command-that-is-equivalent-to-uboots-nand-erase-chip-or-old-flash-eraseal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f507580%2flinux-command-that-is-equivalent-to-uboots-nand-erase-chip-or-old-flash-eraseal%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown