Dear visitor, welcome to VDR Portal. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
-DPLUGINDIR=\"./PLUGINS/lib\" -DVFAT config.c
In file included from menuitems.h:13,
from plugin.h:14,
from config.c:16:
osdbase.h:67: error: parse error before `,' token
osdbase.h: In member function `virtual eOsdMenuKind cOsdItem::MenuKind()':
osdbase.h:92: error: return type `enum eOsdMenuKind' is incomplete
osdbase.h:92: error: cannot convert `int' to `eOsdMenuKind' in return
osdbase.h: In member function `virtual eOsdMenuKind cOsdMenu::MenuKind()':
osdbase.h:156: error: return type `enum eOsdMenuKind' is incomplete
osdbase.h:156: error: cannot convert `int' to `eOsdMenuKind' in return
In file included from plugin.h:14,
from config.c:16:
menuitems.h: In member function `virtual eOsdMenuKind
cMenuSetupPage::MenuKind()':
menuitems.h:182: error: return type `enum eOsdMenuKind' is incomplete
menuitems.h:182: error: cannot convert `int' to `eOsdMenuKind' in return
make: *** [config.o] Error 1
|

Quoted
Original von duc
hmm, busybox sagt mir gar nichts. hab vdr mit hilfe des x-vdr scripts von zulu installiert. das macht eigentlich nichts aussergewöhnliches. knallt halt ein paar patche rein, u.a. den bigpatch, was sonst weiss ich aber nicht. ich probier mal die status.h von dir aus. aber nicht mehr heute *gäääähn*
danke für deine schnelle antwort. ich finds so schade, dass ich kein c++ kann. bei ansi-c hats aufgehört und das ist auch schon etliche jahre her...
duc
ps.
bezgl. des pin plugins habe ich auch noch einen vorschlag, der passt aber nicht in diesen thread. schick ich dir evtl. ne pn
Quoted
Original von chrisz
So, booten konnte ich schon mal.
lag wohl, dass ich /etc/vdr/plugins/graphtft gemacht habe, statt graphTFT.
So, nun passiert aber nichts weiter. Der VDR bootet, aber auf dem Psone bleibt die Console, dass heißt, ich sehen nichts, keins Skin, etc. habe aber alles drin.
Komisch.
gruß chrisz
|
|
Source code |
1 2 3 4 5 |
#16 Version 0.0.12a, horchi
- added column type 'image' e.g. for the status column (T,t,V,...)
- fixed problem with imagemap's when using setup plugin
(now images for Menu's ending with "...")
- added span support (first BETA try to be continued!)
|
|
|
Source code |
1 2 3 |
Item=SpectrumAnalyzer,x=500,y=350,width=200,height=100,path=backgrounds/spectrum.png; oder Item=SpectrumAnalyzer,x=500,y=350,width=200,height=100,red=52,green=162,blue=159; |
Ok genug der Wünsche.This post has been edited 1 times, last edit by "horchi" (Nov 4th 2006, 6:25pm)
Quoted
Original von chrisz
ja, eigendlich alles drin.
Komischerweise kann ich kein modprobe vesafb machen. modul nicht gefunden ?! ist aber im Kernel drinn. Sollte aber auch mit radeonfb laufen.
Seltsam, echt.
die Konsole ist ja da, Plugin wird gestartet. Nur ich sehe nichts.
kann ich den fb0 irgendwie testen. Dem ein bild senden, oder so. Das müßte ich ja dann am TFT sehen.
gruß chrisz
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
root@linvdr:/tmp# lspci | grep VGA 01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV100 QY [Radeon 7000/VE] root@linvdr:/tmp# zgrep -i FB /proc/config.gz | grep -v "^#" CONFIG_FB=y CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_VESA=y root@linvdr:/tmp# uname -a Linux linvdr 2.6.18.1 #2 PREEMPT Wed Oct 18 06:27:18 CEST 2006 i686 GNU/Linux |
|
|
Source code |
1 |
kernel /boot/vmlinuz vga=0x314 root=/dev/hda1 acpi=force quiet |
This post has been edited 1 times, last edit by "horchi" (Nov 4th 2006, 6:35pm)



This post has been edited 1 times, last edit by "udobroemme" (Nov 5th 2006, 3:18pm)
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
--- ../vdr-1.4.3-plain//osdbase.h 2006-01-06 12:55:30.000000000 +0100
+++ osdbase.h 2006-10-29 16:21:11.000000000 +0100
@@ -46,6 +46,30 @@
osUser10,
};
+enum eOsdMenuKind { omUnknown,
+ omMain,
+ omText,
+ omTimerEdit,
+ omEvent,
+ omCam,
+ omCamEnquiry,
+ omSetupPage,
+ omEditChannel,
+ omChannels,
+ omCommands,
+ omTimers,
+ omWhatsOn,
+ omWhatsOnElse = omWhatsOn,
+ omWhatsOnNow,
+ omWhatsOnNext
+ omSchedule,
+ omRecording,
+ omRecordings,
+ omRenameRecording,
+ omSetup
+ };
+
+
|
This post has been edited 1 times, last edit by "IG88" (Nov 5th 2006, 3:21pm)