From: christian.buettner@rafi.de
To: Alexander Aring <alex.aring@googlemail.com>
Cc: barebox@lists.infradead.org
Subject: Antwort: Re: Re: Create NAND Partition through barebox
Date: Thu, 29 Mar 2012 14:59:07 +0200 [thread overview]
Message-ID: <OFADF64A2E.4C13BEDA-ONC12579D0.0047261C-C12579D0.004752BF@o0802.rafi.inhouse> (raw)
In-Reply-To: <CAB_54W4aZA1W0yGMtboW-F0CLmfx4et2XNEjExdFdZUE_g4a+g@mail.gmail.com>
[-- Attachment #1.1: Type: text/plain, Size: 3418 bytes --]
devinfo
devices:
`---- imx_serial0
`---- cs0
`---- mem0
`---- 0x00000000-0x1fffffff: /dev/ram0
`---- mem1
`---- 0x00000000-0x1fffffff: /dev/ram1
`---- imx_iim0
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank0
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank1
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank2
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank3
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank4
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank5
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank6
`---- 0x00000000-0x0000001f: /dev/imx_iim_bank7
`---- ramfs0
`---- devfs0
`---- mem2
`---- 0x00000000-0x00001d47: /dev/defaultenv
`---- mem3
`---- 0x00000000-0xfffffffe: /dev/mem
`---- cs1
`---- fec_imx0
`---- miidev0
`---- 0x00000000-0x0000003f: /dev/phy0
`---- eth0
drivers:
imx_serial
ramfs
devfs
imx_iim
fec_imx
miidev
mem
barebox:/ adp
Unknown command 'adp' - try 'help'
barebox:/ addpart
Usage: addpart <device> <part_desc>
Add a partition description to a device.
<device> device being worked on
<part_desc> size1[@offset1](name1)[ro],size2[@offset2](name2)[ro],...
barebox:/ addpart /dev/nand0
256k(barebox)ro,768k(bareboxenv),4M(kernel),-(root)
addpart: No such file or directory
barebox:/
I have an addpart tool as you can see but i cannot create a partition. In
the /dev folder is also no /dev/nand0
- - Christian
Von: Alexander Aring <alex.aring@googlemail.com>
An: christian.buettner@rafi.de
Kopie: Eric Bénard <eric@eukrea.com>, barebox@lists.infradead.org
Datum: 29.03.2012 14:40
Betreff: Re: Re: Create NAND Partition through barebox
Hi,
is there a /dev/nand0 device?
/env/bin/init call "addpart /dev/nand0 $nand_parts" and create these
partitions.
Or maybe the command is not available?
Alex
Am 29. März 2012 14:32 schrieb <christian.buettner@rafi.de>:
This is my current config:
#!/bin/sh
machine=test
kernel_loc=nand
rootfs_loc=nand
rootfs_type=ubifs
kernel=zImage
rootfs=rootfs
envimage=environ.bin
autoboot_timeout=3
nfsroot="/tools/rootfs/test"
console="console=ttymxc0,115200"
bootargs=${console}
nand_parts="256k(barebox)ro,768k(bareboxenv),4M(kernel),-(root)"
kdev="/dev/nand0.kernel.bb"
rootfs_mtdblock_nand=3
But i see no NAND in devinfo
- - Christian
Von: Eric Bénard <eric@eukrea.com>
An: barebox@lists.infradead.org
Datum: 29.03.2012 14:04
Betreff: Re: Create NAND Partition through barebox
Gesendet von: barebox-bounces@lists.infradead.org
Hi,
Le Thu, 29 Mar 2012 13:55:43 +0200,
christian.buettner@rafi.de a écrit :
> i need to create a NAND Partition through the barebox prompt to be able
to
> flash a kernel image on it.
>
>.../...
>
> I tried using
> $ nand -a /dev/nand0.*
>
> Nothing happens..
> What is wrong?
>
do you have the partition definition in your /env/config file ?
Eric
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
[-- Attachment #1.2: Type: text/html, Size: 10134 bytes --]
[-- Attachment #2: Type: text/plain, Size: 149 bytes --]
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-03-29 12:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-29 11:55 christian.buettner
2012-03-29 12:03 ` Eric Bénard
2012-03-29 12:32 ` Antwort: " christian.buettner
2012-03-29 12:34 ` Eric Bénard
2012-03-29 12:40 ` Alexander Aring
2012-03-29 12:59 ` christian.buettner [this message]
2012-03-29 13:01 ` Eric Bénard
2012-03-29 13:42 ` Franck Jullien
2012-03-30 12:03 ` Antwort: " christian.buettner
2012-03-29 12:08 ` Alexander Aring
2012-03-29 12:15 ` Antwort: " christian.buettner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=OFADF64A2E.4C13BEDA-ONC12579D0.0047261C-C12579D0.004752BF@o0802.rafi.inhouse \
--to=christian.buettner@rafi.de \
--cc=alex.aring@googlemail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox