Linux command that is equivalent to uboot's nand erase.chip or old flash_eraseall2019 Community Moderator Electionformat / rewrite old ide flash modulerootfs.jffs2 files system won't fit in mtd3u-boot command description: mtdargs and boardsetupPrint list of bad blocks in NAND flash from user spaceProcedure to figuring out U-Boot environment location from binary/hex dumpu-boot how to mark bad blocksU-Boot Application that can access all files on USB Flash DriveBackup Nand Flash memory areaCannot access nand or emmc partition from linuxReading and writing NAND flash with dd
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
Is there a nicer/politer/more positive alternative for "negates"?
How much theory knowledge is actually used while playing?
Why do Radio Buttons not fill the entire outer circle?
Review your own paper in Mathematics
What is the difference between lands and mana?
Why do ¬, ∀ and ∃ have the same precedence?
Plot of a tornado shape like surface
How to get directions in deep space?
What fields between the rationals and the reals allow a good notion of 2D distance?
How to make money from a browser who sees 5 seconds into the future of any web page?
Is this part of the description of the Archfey warlock's Misty Escape feature redundant?
Why is so much work done on numerical verification of the Riemann Hypothesis?
Why Shazam when there is already Superman?
How could a planet have erratic days?
Showing a sum is positive
Why is the Sun approximated as a black body at ~ 5800 K?
What is Cash Advance APR?
Why does this expression simplify as such?
Strong empirical falsification of quantum mechanics based on vacuum energy density?
Can I cause damage to electrical appliances by unplugging them when they are turned on?
Does "he squandered his car on drink" sound natural?
How many arrows is an archer expected to fire by the end of the Tyranny of Dragons pair of adventures?
Is there any evidence that Cleopatra and Caesarion considered fleeing to India to escape the Romans?
Linux command that is equivalent to uboot's nand erase.chip or old flash_eraseall
2019 Community Moderator Electionformat / rewrite old ide flash modulerootfs.jffs2 files system won't fit in mtd3u-boot command description: mtdargs and boardsetupPrint list of bad blocks in NAND flash from user spaceProcedure to figuring out U-Boot environment location from binary/hex dumpu-boot how to mark bad blocksU-Boot Application that can access all files on USB Flash DriveBackup Nand Flash memory areaCannot access nand or emmc partition from linuxReading and writing NAND flash with dd
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 yesterday


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