Chameleon

Chameleon Commit Details

Date:2010-09-26 17:24:21 (13 years 7 months ago)
Author:Evan Lojewski
Commit:559
Parents: 558
Message:Added GMA enabler to Graphics Enabler module.
Changes:
M/branches/meklort/i386/modules/GraphicsEnabler/GraphicsEnabler.c
M/branches/meklort/i386/modules/GraphicsEnabler/Makefile

File differences

branches/meklort/i386/modules/GraphicsEnabler/GraphicsEnabler.c
1010
1111
1212
13
1314
1415
1516
......
4546
4647
4748
48
49
50
49
5150
5251
5352
#include "bootstruct.h"
#include "nvidia.h"
#include "ati.h"
#include "gma.h"
#include "modules.h"
break;
case PCI_VENDOR_ID_INTEL:
//message to be removed once support for these cards is added
verbose("Intel VGA Controller [%04x:%04x] :: %s (currently NOT SUPPORTED)\n",
current->vendor_id, current->device_id, devicepath);
setup_gma_devprop(current);
break;
case PCI_VENDOR_ID_NVIDIA:
branches/meklort/i386/modules/GraphicsEnabler/Makefile
4646
4747
4848
49
49
5050
5151
5252
......
7373
7474
7575
76
7677
7778
7879
......
8788
8889
8990
91
92
9093
9194
9295
VPATH = $(OBJROOT):$(SYMROOT)
GRAPHICS_ENABLER_OBJS = nvidia.o ati.o GraphicsEnabler.o
GRAPHICS_ENABLER_OBJS = nvidia.o ati.o gma.o GraphicsEnabler.o
SFILES =
-final_output $(MODULE_NAME) \
$(OBJROOT)/ati.o \
$(OBJROOT)/nvidia.o \
$(OBJROOT)/gma.o \
$(OBJROOT)/GraphicsEnabler.o \
-o $(SYMROOT)/$(MODULE_NAME).dylib
nvidia.o:
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEFINES) -c "nvidia.c" $(INC) -o "$(OBJROOT)/nvidia.o"
gma.o:
$(CC) $(CPPFLAGS) $(CFLAGS) $(DEFINES) -c "gma.c" $(INC) -o "$(OBJROOT)/gma.o"
include ../../MakeInc.dir

Archive Download the corresponding diff file

Revision: 559