public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* How to use MTD util: nandwrite
@ 2007-09-11  2:51 Wanghao.Yu
  2007-09-11  8:44 ` Artem Bityutskiy
  2007-09-11  9:23 ` falls huang
  0 siblings, 2 replies; 4+ messages in thread
From: Wanghao.Yu @ 2007-09-11  2:51 UTC (permalink / raw)
  To: linux-mtd

Hi,
I met a problem when I used nandwrite to copy file to NandFlash.
The command I used is as follows.
#nandwrite /tmp/hello /dev/mtd0 (copy file named hello to /dev/mtd0)
The error message is 
MEMGETINFO: Inappropriate ioctl for device.
Before using nandwrite, I have already used "flash_eraseall -j /dev/mtd0" to erase the NandFlash.
I don't know where the problem is.
Could anyone help me?

Best Regards,

Yu Wanghao (Helen)
Component Verification
COM IFCX CV
Infineon Technologies
CV Lab,F3, Block A, No.38, Gaoxin 6th Road, 
Xi'an High-tech Industries Development Zone, 
Xi'an,  P.R.China 710075 
Tel.	+86 29 8832 8222 ext 8513
Fax 	+86 29 8831 7279
mailto:wanghao.yu@infineon.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to use MTD util: nandwrite
  2007-09-11  2:51 How to use MTD util: nandwrite Wanghao.Yu
@ 2007-09-11  8:44 ` Artem Bityutskiy
  2007-09-11  9:23 ` falls huang
  1 sibling, 0 replies; 4+ messages in thread
From: Artem Bityutskiy @ 2007-09-11  8:44 UTC (permalink / raw)
  To: Wanghao.Yu; +Cc: linux-mtd

On Tue, 2007-09-11 at 10:51 +0800, Wanghao.Yu@infineon.com wrote:
> I met a problem when I used nandwrite to copy file to NandFlash.
> The command I used is as follows.
> #nandwrite /tmp/hello /dev/mtd0 (copy file named hello to /dev/mtd0)
> The error message is 
> MEMGETINFO: Inappropriate ioctl for device.
> Before using nandwrite, I have already used "flash_eraseall -j /dev/mtd0" to erase the NandFlash.
> I don't know where the problem is.
> Could anyone help me?

I last tried this a year ago and it worked. But I wouldn't be surprized
if someone broke the utility. So I'd suggest you to debug
nandwrite/kernel.

-- 
Best regards,
Artem Bityutskiy (Битюцкий Артём)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: How to use MTD util: nandwrite
  2007-09-11  2:51 How to use MTD util: nandwrite Wanghao.Yu
  2007-09-11  8:44 ` Artem Bityutskiy
@ 2007-09-11  9:23 ` falls huang
  2007-09-11  9:36   ` Wanghao.Yu
  1 sibling, 1 reply; 4+ messages in thread
From: falls huang @ 2007-09-11  9:23 UTC (permalink / raw)
  To: Wanghao.Yu@infineon.com; +Cc: linux-mtd

Hello Yu Wanghao!

   It's seemed that you made a low level mistake.

   Plz read the the nandwrite's usage and code carefully:  "Usage:
nandwrite [OPTION] MTD_DEVICE INPUTFILE" ,  but your command is :
"nandwrite /tmp/hello /dev/mtd0 ."

   RTFM !

2007/9/11, Wanghao.Yu@infineon.com <Wanghao.Yu@infineon.com>:
> Hi,
> I met a problem when I used nandwrite to copy file to NandFlash.
> The command I used is as follows.
> #nandwrite /tmp/hello /dev/mtd0 (copy file named hello to /dev/mtd0)
> The error message is
> MEMGETINFO: Inappropriate ioctl for device.
> Before using nandwrite, I have already used "flash_eraseall -j /dev/mtd0" to erase the NandFlash.
> I don't know where the problem is.
> Could anyone help me?
>
> Best Regards,
>
> Yu Wanghao (Helen)
> Component Verification
> COM IFCX CV
> Infineon Technologies
> CV Lab,F3, Block A, No.38, Gaoxin 6th Road,
> Xi'an High-tech Industries Development Zone,
> Xi'an,  P.R.China 710075
> Tel.    +86 29 8832 8222 ext 8513
> Fax     +86 29 8831 7279
> mailto:wanghao.yu@infineon.com
>
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
>


-- 
Regards
Falls Huang

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: How to use MTD util: nandwrite
  2007-09-11  9:23 ` falls huang
@ 2007-09-11  9:36   ` Wanghao.Yu
  0 siblings, 0 replies; 4+ messages in thread
From: Wanghao.Yu @ 2007-09-11  9:36 UTC (permalink / raw)
  To: falls.huang; +Cc: linux-mtd

Hi,
Thanks for your answer.
I already corrected the error.
Anyway,thank you again. 


Best Regards,

Yu Wanghao (Helen)
Component Verification
COM IFCX CV
Infineon Technologies
CV Lab,F3, Block A, No.38, Gaoxin 6th Road, 
Xi'an High-tech Industries Development Zone, 
Xi'an,  P.R.China 710075 
Tel.	+86 29 8832 8222 ext 8513
Fax 	+86 29 8831 7279
mailto:wanghao.yu@infineon.com


-----Original Message-----
From: falls huang [mailto:falls.huang@gmail.com] 
Sent: Tuesday, September 11, 2007 5:23 PM
To: Yu Wanghao (IFCX COM CV)
Cc: linux-mtd@lists.infradead.org
Subject: Re: How to use MTD util: nandwrite

Hello Yu Wanghao!

   It's seemed that you made a low level mistake.

   Plz read the the nandwrite's usage and code carefully:  "Usage:
nandwrite [OPTION] MTD_DEVICE INPUTFILE" ,  but your command is :
"nandwrite /tmp/hello /dev/mtd0 ."

   RTFM !

2007/9/11, Wanghao.Yu@infineon.com <Wanghao.Yu@infineon.com>:
> Hi,
> I met a problem when I used nandwrite to copy file to NandFlash.
> The command I used is as follows.
> #nandwrite /tmp/hello /dev/mtd0 (copy file named hello to /dev/mtd0) 
> The error message is
> MEMGETINFO: Inappropriate ioctl for device.
> Before using nandwrite, I have already used "flash_eraseall -j
/dev/mtd0" to erase the NandFlash.
> I don't know where the problem is.
> Could anyone help me?
>
> Best Regards,
>
> Yu Wanghao (Helen)
> Component Verification
> COM IFCX CV
> Infineon Technologies
> CV Lab,F3, Block A, No.38, Gaoxin 6th Road, Xi'an High-tech Industries

> Development Zone, Xi'an,  P.R.China 710075
> Tel.    +86 29 8832 8222 ext 8513
> Fax     +86 29 8831 7279
> mailto:wanghao.yu@infineon.com
>
>
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
>


--
Regards
Falls Huang

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-09-11  9:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-11  2:51 How to use MTD util: nandwrite Wanghao.Yu
2007-09-11  8:44 ` Artem Bityutskiy
2007-09-11  9:23 ` falls huang
2007-09-11  9:36   ` Wanghao.Yu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox