-
albigdd committed revision 65 to the XXSvideo Linux System SVN repository, changing 64 files.
2009-11-12 09:56:30 UTC in XXSvideo Linux System
-
Hi Wolfgang,
to build the kernel in it's own tree (that's what I usually do, because I don't want to build all other stuff), I wrote a short, simple script to automate the settings of environment variables and make commands:
#!/bin/sh
export ARCH=arm
export CROSS_COMPILE=arm-unknown-linux-gnueabi-
PATH=$PATH:~/opt/arm-unknown-linux-gnueabi/bin/
make...
2009-11-11 08:23:38 UTC in XXSvideo Linux System
-
Hi Wolfgang,
either you compile the kernel inside xxsvideo/linux-2.6.22.19 with make uImage or you have to erase manually the kernel image and start the xxsvideo build as usual:
rm sources/xxsvideo/linux-2.6.22.19/arch/arm/boot/uImage
make
best regards,
Alexander.
2009-11-10 16:39:25 UTC in XXSvideo Linux System
-
Hi Wolfgang,
I would guess the same as Thomas that your kernel is compiled with the (mycable) xxsvideofb driver which will conflict with the FME graphics driver.
So please contact the FME support. I don't know this driver and can't help anyhow.
Best regards,
Alexander.
2009-11-05 14:59:02 UTC in XXSvideo Linux System
-
Hi,
I don't no easy way either. But did you try the directfb-examples? Also this is no nice way to start with :-(
Best regards,
Alexander.
2009-11-03 16:21:37 UTC in XXSvideo Linux System
-
Hi ?,
you don't have to specify any special path to include files. Just include time.h as you used to do.
You h ave to specify the CROSS_COMPILE flag and include the toolchain in your PATH. The the right compiler is used which includes the proper header files from glibc or whatever.
That's not a xxsvideo related question but a cross-compile one.
Best regards,
Alexander.
2009-11-03 16:19:42 UTC in XXSvideo Linux System
-
Hi Wolfgang,
have you ever compiled a program for Linux? It sound's like a newbie question, but maybe I'm wrong.
If the program is located in /root/ you cannot execute it by simply calling
hello
because /root/ is usually not part of the search path:
echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games
You always have to specify the full absolute or relative...
2009-11-03 16:16:25 UTC in XXSvideo Linux System
-
Hi Wolfgang,
please have a look at the other thread, where I replied about this yesterday:
"*Kernel config gets overwritten with defaults*"
If you still have questions... please ask.
Best regards,
Alexander.
2009-10-29 14:26:44 UTC in XXSvideo Linux System
-
Hi Wolfgang,
unfortunately
xxsvideo/linux-2.6.27.21/arch/arm/configs/xxsvideo_xxsterminal_defconfig
has never been updated to 2.6.27.x AND the config marker for the network chip changed (not our idea!):
CONFIG_SMSC911X=y (kernel 2.6.22.x)
CONFIG_SMC911X=y (kernel 2.6.27.x)
I would say, you still get overwritten by the default config and the driver for the...
2009-10-29 09:30:35 UTC in XXSvideo Linux System
-
Hi,
you are totally right. I was wrong.
In fact, it's really not very nice the handling:
1. The vanilla kernel is fetched e.g. from kernel.org
2. The sources get patched by e.g. patches/xxsvideo/linux-2.6.22.19
3. Inside the patched kernel sources, there is a file arch/arm/configs/xxsvideo_jadeevalkit_defconfig which is copied over the .config
The idea was to build a firmware...
2009-10-28 15:18:03 UTC in XXSvideo Linux System