Xilinx Temac

2012-10-12 Thread Guillaume Dargaud
95719] driver: '8188.ethernet': driver_bound: bound to device 'xilinx_temac' [5.495827] bus: 'platform': really_probe: bound device 8188.ethernet to driver xilinx_temac [5.530592] NET: Registered protocol family 17 Is there something I'm missing abou

Re: Moving target

2012-09-10 Thread Guillaume Dargaud
ck on whether it worked or not, and it seems so. -- Guillaume Dargaud http://www.gdargaud.net/Antarctica/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Moving target

2012-08-30 Thread Guillaume Dargaud
DEVNAME); my_cdev = cdev_alloc (); cdev_init(my_cdev, &fops); rc=cdev_add (my_cdev, first, count); rc = driver_register(&xad_driver); printk(KERN_INFO SD "Driver ready!\n" FL);

Replacement to of_register_platform_driver ?

2012-06-13 Thread Guillaume Dargaud
cdev_init(my_cdev, &fops); rc=cdev_add (my_cdev, first, count); ... rc = of_register_platform_driver(&xad_driver); ... } -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Telling the kernel about a Flash SPI...

2011-11-24 Thread Guillaume Dargaud
_from_ the flash (DI) So how can I tell the kernel that there's a FAT32 or ext2 filesystem on it (note, I don't need it as a root/boot filesystem) ? Thanks. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Analysing a kernel panic

2011-07-11 Thread Guillaume Dargaud
es me is that: - my same code on slightly different hardware works perfectly (the differences are not relevant to the driver but to the user application). - a simplified standalone code works (so, non-linux). -- Guillaume Dargaud http://www.gdargaud.net/ ___

Re: Analysing a kernel panic

2011-07-08 Thread Guillaume Dargaud
ion ? It's on a raising signal, so I don't see why that should be an issue. > What HW is this ? What PIC ? It looks like the interrupt source isn't > masked on the PIC itself while it's being handled or something... The hardware is a heavily mo

Re: Analysing a kernel panic

2011-07-07 Thread Guillaume Dargaud
On Tuesday 05 July 2011 16:19:50 Guillaume Dargaud wrote: > Hello all, > one of my drivers is causing a kernel panic and I _think_ it happens in the > 1st call to the interrupt routine. What kind of information can I extract > from the following ? > Is it like a core dump that I can

Analysing a kernel panic

2011-07-05 Thread Guillaume Dargaud
DBG_ADD_CHAR('*'); if (Verbose) printk(KERN_WARNING SD "%dth buffer overflow: %d-%d=%d>=%d\n" FL, Xad.Overflow, Xad.Icnt, Xad.Rcnt, Xad.Icnt-Xad.Rcnt, BUF_NB); } wake_up_interruptible(&

Re: Serial messages on boot

2011-07-01 Thread Guillaume Dargaud
e in the dts file. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Serial messages on boot

2011-07-01 Thread Guillaume Dargaud
Hello all, in the most recent versions of the [xilinx powerpc] kernel, there are no boot messages printed, which make it hard to debug early problems. What has changed and what can I do in order to get all the habitual boot messages on the serial port ? -- Guillaume Dargaud http

Re: Changes to of_device ?

2011-06-17 Thread Guillaume Dargaud
*match) { Thanks, that worked... Side question: how do you guy find your way inside the kernel ? I spent hours trying to find the declarations of various basic structs like device, of_node, etc even with ack-grep and ctags (which I probably don't know how to use very well). -- Guillaume Dar

Re: Changes to of_device ?

2011-06-17 Thread Guillaume Dargaud
declare a probe function in the latest kernels still stand... -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Changes to of_device ?

2011-06-17 Thread Guillaume Dargaud
e device_node structure from the of_device one ? dev->dev is a struct device and there's no device_node info in it... What has changed ? [I'm on the latest Xilinx tree, FWIW, so that's 2.6.25 still ?] -- Guillaume Dargaud http://www.gdargaud.net/ _

Bootp hangs

2011-05-03 Thread Guillaume Dargaud
dress 192.168.1.233; server-name "192.168.1.185"; option host-name "gandalf"; option root-path "192.168.1.185:/media/gandalf,v3,rsize=1024,wsize=1024,proto=udp,nolock,intr"; } $ cat /etc/sysconfig/dhcpd DHCPDARGS=eth1 $ cat /etc/exports /media

Re: Where is CONFIG_BOOT_LOAD ?

2011-04-14 Thread Guillaume Dargaud
--change-addresses" to relocate the elf file with success. > Is configuring the zImage-piggy-back-loader through menuconfig & co evil? That seems like a good idea. Maybe add some way to figure out if the uncompressed kernel overlaps the zImage wrapper ? --

Re: Where is CONFIG_BOOT_LOAD ?

2011-04-08 Thread Guillaume Dargaud
> Isn't that blackfin specific? So how do you change the loading address of the PowerPC kernel from its default 0x40 address ? -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.o

Where is CONFIG_BOOT_LOAD ?

2011-04-08 Thread Guillaume Dargaud
se address [ ] Set custom user task size [ ] Set custom consistent memory pool size -- Guillaume Dargaud http://www.gdargaud.net/Antarctica/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Early kernel debugging

2011-03-25 Thread Guillaume Dargaud
roved the situation since then, although I found the CONFIG_BLK_DEV_RAM option. -- Guillaume Dargaud http://www.gdargaud.net/ "Freedom is just chaos, with better lighting." ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https:/

Re: vmsplice bad address

2011-03-24 Thread Guillaume Dargaud
emory regions as iomem, do a ioremap then mmap and vmsplice but that's a mouthful... -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Booting with ramdisk in kernel

2011-03-22 Thread Guillaume Dargaud
000, the kernel stops instantly without even a blip on the console. A debugger reveals that it stops at 0x401718... I have no idea what's going on at this stage. What am I doing wrong ? -- Guillaume Dargaud http://www.gdargaud.net/ ___ L

vmsplice bad address

2011-03-03 Thread Guillaume Dargaud
g: Pipe 6/7, base:0x480cf000, size:0x100 vmsplice: Bad address Any idea what is wrong in my use of vmsplice ? Thanks -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Zero-copy sockets

2011-03-01 Thread Guillaume Dargaud
Hello all, I cannot find the option SO_SND_COPYAVOID in socket.h... Is there another way to do zero-copy network transfers ? I'm using the 2.6.35 xilinx patched-kernel. Thanks -- Guillaume Dargaud http://www.gdargaud.net/Photo/ ___ Linuxpp

Re: Resources used by driver ?

2011-02-25 Thread Guillaume Dargaud
target. I'm now trying to understand how to use oprofile. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Resources used by driver ?

2011-02-25 Thread Guillaume Dargaud
ELF 32-bit MSB executable, PowerPC or cisco 4500, version 1 (SYSV), statically linked, with unknown capability 0x4100 = 0x11676e75, with unknown capability 0x1 = 0x90402, not stripped I used the vmlinux generated found in ../linus-2.6-xlnx/vmlinux What's wrong with it ? -- Gu

Resources used by driver ?

2011-02-10 Thread Guillaume Dargaud
memory it uses (to check for memory leaks) and how much CPU it takes. How ? Thanks -- Guillaume Dargaud http://www.gdargaud.net/Antarctica/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-10 Thread Guillaume Dargaud
nto the probe function and can now register my interrupt, yeah!, but I don't see the ISR being called. I'm currently checking if it can be a hardware problem before coming back here for more questions ! BTW, is errno/strerror used within the kernel ?

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-08 Thread Guillaume Dargaud
s test prog... no changes: xad_driver_probe() doesn't get called. ...? -- Guillaume Dargaud http://www.gdargaud.net/Antarctica/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-08 Thread Guillaume Dargaud
///////// // Called on rmmod static void xad_exit(void) { platform_device_unregister(pdev); pdev=NULL; platform_driver_unregister(&xad_driver); cdev_del (my_cdev); my_cdev=NULL; unregister_chrdev_region (first, count); printk(KERN_INFO SD &quo

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-07 Thread Guillaume Dargaud
Michael, in your example, when is foo_driver_probe() actually called ? It's not being called when I do an insmod. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlab

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-06 Thread Guillaume Dargaud
river_register(), not that I'm all clear yet on the distinction... Another question: I just spent 10 minutes trying to find where "struct device" was defined. (ack-)grep was absolutely no use. Isn't there a way to cross-

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-06 Thread Guillaume Dargaud
ata -r--r--r--1 root root4.0K Dec 6 09:47 devspec -r--r--r--1 root root4.0K Dec 6 09:47 modalias -r--r--r-- 1 root root 4.0K Dec 6 09:47 name lrwxrwxrwx1 root root 0 Dec 6 09:47 subsystem -> ../../../bus/of_platform/ -rw-r--r--

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-03 Thread Guillaume Dargaud
... Why is there not a word about the functions platform_*_register in my various driver books ? LDD 3rd ed (O'Reilly), Writing LDD (Cooperstein) or LKD (Love)... Is it something specific to powerpc and the books are oriented x86 ? What's a

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-02 Thread Guillaume Dargaud
I want to use irq_of_parse_and_map... -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-02 Thread Guillaume Dargaud
Are there some examples of use somewhere ? > Can your driver tolerate it being shared? If so, request it as shared. I think so (not sure). -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https:/

Getting the IRQ number (Was: Basic driver devel questions ?)

2010-12-01 Thread Guillaume Dargaud
4 Dec 1 16:26 xlnx,mplb-p2p -r--r--r--1 root root 4 Dec 1 16:26 xlnx,mplb-smallest- slave But first I'm not sure where to find the IRQ in there, and also I'm not sure if reading the filesystem from a module i

Basic driver devel questions ?

2010-12-01 Thread Guillaume Dargaud
Hello all, is it OK if I ask basic driver development questions here ? Could you recommend a better forum for that maybe ? Thanks -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https

Parsing DTS file

2010-10-18 Thread Guillaume Dargaud
Hello all, I'm sure there's a standard way of doing this: I'd like to access some info from the DTS file from a usermode program (things like address of device, etc...) What is the best way to do this ? Write a parser ? Or query the running kernel somehow ? -- Guillau

Ppc to PowerPC changes relating to XGPIO

2010-10-04 Thread Guillaume Dargaud
cture. How do I interact win GPIOs from usermode if not for ioctl calls ? (I need to manipulate the direction bits, not just read/write values). Note: I'm using the kernel provided by the Xilinx git, so maybe my question isn't relevant here. Thanks -- Guillaume Dargaud http://w

Re: Initial kernel command string (Was: Generating elf kernel ?)

2010-09-20 Thread Guillaume Dargaud
); > ... > > > So you have to define one function, console_ops.edit_cmdline --> > serial_edit_cmdline. Or you can try bind this to your boot console ops > directly. Please refer to the file, arch/powerpc/boot/serial.c. So I forced console_ops.edit_cmdline = s

Initial kernel command string (Was: Generating elf kernel ?)

2010-09-17 Thread Guillaume Dargaud
ONFIG_PPC_WERROR=y CONFIG_PRINT_STACK_DEPTH=64 CONFIG_DEFAULT_SECURITY_DAC=y CONFIG_DEFAULT_SECURITY="" CONFIG_CRYPTO=y CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_ALGAPI2=y CONFIG_CRYPTO_RNG=y CONFIG_CRYPTO_RNG2=y CONFIG_CRYPTO_AES=y CONFIG_CRYPTO_ANSI_CPRNG=y -- Guillaume Dargaud http://www.gdargau

Re: Generating elf kernel ?

2010-09-16 Thread Guillaume Dargaud
set will be pc address, not 0x4. You can dump your memory to > check this. The bootloader has no concept of virtual address, right ? -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Generating elf kernel ?

2010-09-15 Thread Guillaume Dargaud
> Please use simpleImage..elf. Great, that seems to be it... Except that nothing happens when I jump to 0x4, no message from the kernel, nothing. I'm a bit stumped here as my old kernel worked fine. -- Guillaume Dargaud http://www.gdar

Re: Generating elf kernel ?

2010-09-15 Thread Guillaume Dargaud
0x40 How can I change the entry point address ? -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

Re: Generating elf kernel ?

2010-09-14 Thread Guillaume Dargaud
nel from the development PC to the memory of my device (and then my own 'one-time-only' tool to transfer from mem to flash). And the xilinx program refuses that kernel, complaining that it's not an elf file. -- Guillaume Dargaud http:

Generating elf kernel ?

2010-09-14 Thread Guillaume Dargaud
he PowerPC architecture, but the generated kernel is different and won't load: $ file zImage zImage: u-boot/PPCBoot image How do I generate an elf file ? For what it's worth, I use the Xilinx-patched kernel and I load it to a flash mem using impact. -- Guillaume Dargaud htt

Curious serial slowdown

2010-05-11 Thread Guillaume Dargaud
of 115000 bauds !!!). But the card goes at normal speed as an ssh connection shows. So my question is: is it caused by the fact that there are 2 missing serial ports ? Will making a new kernel with the correct hardware definition solve it ? -- Guillaume Dargaud http://www.gdargaud.net/ smime.p7s

Xilinx GPIO API and kernel GPIO API differences

2008-09-03 Thread Guillaume Dargaud
ds, the equivalent to this: XGpio IO; XGpio_Initialize(&IO, Dev); XGpio_SetDataDirection(&Input, 1, 0x0000); Data = XGpio_DiscreteRead(&Input, 1); XGpio_DiscreteWrite(&Output, 1, 0x1278); Is there anything available from usermode besides those ioctl calls ? This

gdb woes

2008-09-01 Thread Guillaume Dargaud
t;gdb myapp" locally on the card and I get the prompt. Then I "run" it and I get dumped back to bash, but a "ps" shows that the app is still running... Anybody has a clue to what I can do about this ? Is there something wrong with my gdb (it's compiled as part of bu

Changing Mac address

2008-07-28 Thread Guillaume Dargaud
up But I want to do that before the network is up. What is the relevant kernel section to change in order to set the MAC address ? Thanks. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Calling the kernel from a mini-bootloader

2008-07-22 Thread Guillaume Dargaud
calling the kernel ? Thanks a lot for shedding a light on those mysteries. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Calling the kernel from a mini-bootloader

2008-07-22 Thread Guillaume Dargaud
ernel But then it hangs for exactly 3 minutes, nothing on the serial port, before the bootloader restarts. Why should the behavior be different whether it's started from the debugger or from my bootloader ? -- Guillaume Dargaud http://w

Re: Calling the kernel from a mini-bootloader

2008-07-18 Thread Guillaume Dargaud
tree. Maybe I can just use an elementary approach like that: have the bootloader write a single byte with the jumper positions somewhere in RAM, and then have the kernel read it to use for the Mac address. With the flat addressing it could work if there aren't built-in

Calling the kernel from a mini-bootloader

2008-07-17 Thread Guillaume Dargaud
the MAC address ? Maybe the main() of the kernel can receive argv/argc the usual way, and I just need to call "0x40(argc, argv);" but I have no idea if that works. Thanks for suggestions. -- Guillaume Dargaud http://www.gdargaud.net/ __

Re: Using GPIO

2008-06-06 Thread Guillaume Dargaud
x27;t. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: problems with porting linux 2.6 kernel to xupv2p

2008-06-03 Thread Guillaume Dargaud
Have you tried compiling the Xilinx git tree ? I'm now using it fine with an ML405 board and I've seen options for xup in it: git clone git://git.xilinx.com/linux-2.6-xlnx.git-- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-d

Re: Still struggling with Xilinx GPIO...

2008-05-28 Thread Guillaume Dargaud
hey be 3 different calls using different addresses ?!? Argh, this complete lack of documentation in maddening. Not everything can be understood from reading the source. Thanks. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list

Re: Using GPIO

2008-05-19 Thread Guillaume Dargaud
XPAR_GPIO(1), #endif #if defined(XPAR_GPIO_2_BASEADDR) XPAR_GPIO(2), #endif -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Using GPIO

2008-05-19 Thread Guillaume Dargaud
ng the kernel" I've probably overlooked something obvious, but I'm pretty new in putting my greasy fingers on delicate kernel internals... In particular I don't know what is this .num_resources value. -- Guillaume Dargaud http://www.gdargaud.net/ _

Re: Using GPIO

2008-05-16 Thread Guillaume Dargaud
_MSDOS_PARTITION=y CONFIG_PLIST=y CONFIG_HAS_IOMEM=y CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_PRINTK_TIME=y CONFIG_ENABLE_WARN_DEPRECATED=y CONFIG_ENABLE_MUST_CHECK=y CONFIG_DEBUG_KERNEL=y CONFIG_DETECT_SOFTLOCKUP=y CONFIG_SCHED_DEBUG=y CONFIG_DEBUG_MUTEXES=y CONFIG_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_INFO=y -- Guillaum

Using GPIO

2008-05-15 Thread Guillaume Dargaud
ed my root filesystem with buildroot, but apparently this leads nowhere as it's not visible in /proc/devices. Is there some example or tutorial on how to use CONFIG_XILINX_GPIO ? Either as a device or as API calls... -- Guillaume Dargaud http://w

Re: ML405 failed reboot

2008-04-25 Thread Guillaume Dargaud
XXX [ 2201.565826] And now it's truly well hung. Problem with init ? The wait reboot is compiled ? The reset vector ? -- Gu

ML405 failed reboot

2008-04-24 Thread Guillaume Dargaud
tem reboot [ 434.713999] Restarting system. [ 434.7[ 434.718123] Signal: 4 [ 434.718133] Code: 30001 [ 434.718144] Addr: c74cbdc8 And then it just hangs. I also tried the additional -n (no sync) and -f (force) without difference. Design problem ? Any other way to force a reboot ? -- Guillaume Da

Re: Xilinx network trouble (mostly solved)

2008-04-21 Thread Guillaume Dargaud
0/0x18 [ 2340.786397] [c7d0ff40] [c0002c50] ret_from_syscall+0x0/0x3c [ 2340.791923] Instruction dump: [ 2340.794865] 3000 7c005a2c 7c00592d 40a2fff0 817f006c 54290024 2f8b 419e0024 [ 2340.802549] 8009000c 5400011e 7cd0 54000ffe <0f00> 7fe3fb78 7d6903a6 4e800421 (192.168.1.185): 29

Re: Xilinx network trouble (mostly solved)

2008-04-18 Thread Guillaume Dargaud
ers to the EmacLite: IT WORKED ! I'm still having trouble mounting an NFS root and ssh'ing into the target, but I guess that's another issue... -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linu

Xilinx network trouble

2008-04-17 Thread Guillaume Dargaud
OOT_NFS=y CONFIG_NFS_COMMON=y Thanks for any hint. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: [Buildroot] zImage.embedded

2008-04-15 Thread Guillaume Dargaud
kernel instead ? The rational is that I have a working system on a card in my embedded system, but if possible I'd like to have it boot off the latest version available on the network. And if not available, simple boot using fallback parameters. Makes sense ? -- Guillaume Dargaud

Re: Manual kernel parameters are being ignored

2008-04-15 Thread Guillaume Dargaud
EBUG_MUTEXES=y CONFIG_DEBUG_BUGVERBOSE=y CONFIG_DEBUG_INFO=y CONFIG_FORCED_INLINING=y CONFIG_SAMPLES=y CONFIG_CRYPTO=y CONFIG_CRYPTO_ALGAPI=y CONFIG_CRYPTO_BLKCIPHER=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_MD5=y CONFIG_CRYPTO_CBC=y CONFIG_CRYPTO_DES=y CONFIG_CRYPTO_HW=y -- Guillaume Dargaud http://www.gdar

Manual kernel parameters are being ignored

2008-04-14 Thread Guillaume Dargaud
nfsroot=192.168.1.185:/ht -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: zImage.embedded

2008-04-14 Thread Guillaume Dargaud
py/u-boot-1.3.2/.configured] Error 2 Apparently it expects a BOARD_NAME variable, but I don't know what to put in it (I looked at the makefile and can't find the ml405 referenced in there). -- Guillaume Dargaud http://www.gdargaud.net/ _

Re: zImage.embedded

2008-04-11 Thread Guillaume Dargaud
aboot. Haven't tried either yet. Will do on tuesday. I don't know if Xilinx has another solution (I remember seeing some boot function in the API, usable from a standalone elf file). -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-d

zImage.embedded

2008-04-11 Thread Guillaume Dargaud
annot stat `arch/ppc/boot/images/zImage.embedded': No such file or directory make[2]: *** [znetboot] Error 1 make[1]: *** [simple] Error 2 make: *** [znetboot] Error 2 is the file zImage.elf my proper network image ? -- Guillaume Dargaud http://w

Re: Booting a Xilinx board

2008-04-08 Thread Guillaume Dargaud
- are they created dynamically by /bin/mdev on boot based on a manually written /etc/mdev.conf table as the error messages seem to imply ? - can they be generated automagically by a MAKEDEV script ? In the second case, how do I know which devices and what names I'm supposed to defi

Re: Booting a Xilinx board

2008-04-08 Thread Guillaume Dargaud
ve to work on it... -- Guillaume Dargaud http://www.gdargaud.net/Antarctica/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Booting a Xilinx board

2008-04-07 Thread Guillaume Dargaud
040D0 zimage at: 00404E40 0050484E avail ram: 00508000 0800 Linux/PPC load: console=ttyS0,9600 ip=on root=/dev/sysace/disc0/part2 rw Uncompressing Linux...done. Now booting the kernel And then it stops. I'm sure I've overlooked something obvious... Thanks -- Guillau

Re: ARCH=ppc vs powerpc

2008-04-02 Thread Guillaume Dargaud
Sorry, although it's related to linuxppc, I intended to post this question to the buildroot mailing list. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/lin

ARCH=ppc vs powerpc

2008-04-02 Thread Guillaume Dargaud
config XILINX_ML405 ./project_build_ppc/genepy/linux-2.6.24/arch/ppc/platforms/4xx/Kconfig:config XILINX_ML405 ./toolchain_build_ppc/linux-2.6.24/arch/ppc/platforms/4xx/Kconfig:config XILINX_ML405 Well, it's no surprise that it won't find them if it looks in the powerpc branch... The

Re: Patch: FW:Xilinx: BSP: Updated ML405 to matchhardwareusedfortesting

2008-04-01 Thread Guillaume Dargaud
erly from one make to the other. Anyone who knows buildroot care to comment on that ? -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Patch: FW:Xilinx: BSP: Updated ML405 to match hardware usedfortesting

2008-03-28 Thread Guillaume Dargaud
repository in /home/guinevere/buildroot/linux-2.6-virtex/.git/ fatal: The remote end hung up unexpectedly fetch-pack from 'git://git.secretlab.ca/git/linux-2.6-virtex.git' failed. -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc

Re: Patch: FW:Xilinx: BSP: Updated ML405 to match hardware used fortesting

2008-03-28 Thread Guillaume Dargaud
assign nonexistent symbol SERIAL_TEXT_DEBUG So my question is that even with a full (?) Xilinx kernel, there seems to be missing drivers. Does this have to do with the BSP ? Thanks -- Guillaume Dargaud http://www.gdargaud.net/ ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

Re: Patch: FW:Xilinx: BSP: Updated ML405 to match hardware used for testing

2008-03-26 Thread Guillaume Dargaud
atch applies to: it references files such as ml405_defconfig which are not part of the normal kernel tree and which I cannot find anywhere. Is there some other kind of patch that needs to apply first in order to get for instance CONFIG_XILINX_DRIVERS, CONFIG_XILINX_EMAC, etc... Thanks -- Gui