]> Joshua Wise's Git repositories - netwatch.git/commitdiff
More churn moving files around.
authorJoshua Wise <joshua@escape.wv.cc.cmu.edu>
Sat, 10 Oct 2009 22:12:19 +0000 (18:12 -0400)
committerJoshua Wise <joshua@escape.wv.cc.cmu.edu>
Sat, 10 Oct 2009 22:12:19 +0000 (18:12 -0400)
20 files changed:
.gitignore
grubload/Makefile
hardware/ich2/Makefile [moved from ich2/Makefile with 100% similarity]
hardware/ich2/config.mk [new file with mode: 0644]
hardware/ich2/ich2-timer.c [moved from ich2/ich2-timer.c with 100% similarity]
hardware/ich2/smi.c [moved from ich2/smi.c with 100% similarity]
hardware/ich2/smm-open-ich2.c [moved from ich2/smm-open-ich2.c with 100% similarity]
hardware/ich2/smram-hardware.h [moved from ich2/smram-hardware.h with 100% similarity]
hardware/ich2/smram-ich2.c [moved from ich2/smram-ich2.c with 100% similarity]
hardware/ich2/smram-ich2.h [moved from ich2/smram-ich2.h with 100% similarity]
hardware/ich7/reg-82865.h [moved from ich7/reg-82865.h with 100% similarity]
hardware/ich7/smm-open-ich7.c [moved from ich7/smm-open-ich7.c with 100% similarity]
hardware/net/3c90x.c [moved from net/3c90x.c with 100% similarity]
hardware/video/fb.c [moved from video/fb.c with 100% similarity]
hardware/video/generic.c [moved from video/generic.c with 100% similarity]
hardware/video/generic.h [moved from video/generic.h with 100% similarity]
hardware/video/text.c [moved from video/text.c with 100% similarity]
hardware/video/tnt2.c [moved from video/tnt2.c with 100% similarity]
ich2/config.mk [deleted file]
netwatch/Makefile

index 64c574efd740f6fbabd89216af046a2eaf0592ad..20cefde68548d1060f510873dee0e9f792af5b6e 100644 (file)
@@ -1,3 +1,5 @@
 *.o
 *.bin
 *.elf
+grubload/smmload
+hardware/ich2/smram-ich2
\ No newline at end of file
index 7e9a93e099b8ba20d9afeb4925a38c2956f6b2fa..8aae1ddf4187337c1814533a4f469b5afd46d33b 100644 (file)
@@ -1,9 +1,9 @@
 -include ../config.mk
--include ../ich2/config.mk
+-include ../hardware/ich2/config.mk
 
 OBJS=main.o mbentry.o realmode.o loader.o ../pci/pci-raw.o ../lib/minilib.o ../lib/console.o $(CHIP_OBJS) output.o ../lib/sprintf.o ../lib/doprnt.o ../pci/pci.o
 CC=$(CROSS)gcc
-CFLAGS=-nostdlib -I../include -I../include/raw -I. -D__RAW__ -fno-builtin -nostdinc -Wall -Werror -pedantic -std=gnu99
+CFLAGS+=-nostdlib -I../include -I../include/raw -I. -D__RAW__ -fno-builtin -nostdinc -Wall -Werror -pedantic -std=gnu99
 
 all: smmload
 
similarity index 100%
rename from ich2/Makefile
rename to hardware/ich2/Makefile
diff --git a/hardware/ich2/config.mk b/hardware/ich2/config.mk
new file mode 100644 (file)
index 0000000..b2bb064
--- /dev/null
@@ -0,0 +1,4 @@
+CFLAGS += -DNETWATCH_ICH2 -I../hardware/ich2
+CHIP_OBJS += ../hardware/ich2/ich2-timer.o \
+             ../hardware/ich2/smi.o \
+             ../hardware/ich2/smram-ich2.o
similarity index 100%
rename from ich2/ich2-timer.c
rename to hardware/ich2/ich2-timer.c
similarity index 100%
rename from ich2/smi.c
rename to hardware/ich2/smi.c
similarity index 100%
rename from ich2/smram-ich2.c
rename to hardware/ich2/smram-ich2.c
similarity index 100%
rename from ich2/smram-ich2.h
rename to hardware/ich2/smram-ich2.h
similarity index 100%
rename from ich7/reg-82865.h
rename to hardware/ich7/reg-82865.h
similarity index 100%
rename from net/3c90x.c
rename to hardware/net/3c90x.c
similarity index 100%
rename from video/fb.c
rename to hardware/video/fb.c
similarity index 100%
rename from video/generic.c
rename to hardware/video/generic.c
similarity index 100%
rename from video/generic.h
rename to hardware/video/generic.h
similarity index 100%
rename from video/text.c
rename to hardware/video/text.c
similarity index 100%
rename from video/tnt2.c
rename to hardware/video/tnt2.c
diff --git a/ich2/config.mk b/ich2/config.mk
deleted file mode 100644 (file)
index 5164324..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-CFLAGS += -DNETWATCH_ICH2 -I../ich2
-CHIP_OBJS += ../ich2/ich2-timer.o \
-             ../ich2/smi.o \
-             ../ich2/smram-ich2.o
index 11a837bb0e7adf26c20f7c6aa800d5c27fbaf1d4..f36ac5f6d44994ab72d0f495d707b4ca6bbd97b1 100644 (file)
@@ -1,8 +1,8 @@
 -include ../config.mk
--include ../ich2/config.mk
+-include ../hardware/ich2/config.mk
 
 CC=$(CROSS)gcc
-CFLAGS+=-I../include -I../include/raw \
+CFLAGS+=-I../include -I../net -I../include/raw \
         -I../lwip/src/include -I../lwip/src/include/ipv4 \
         -nostdlib -nostdinc -fno-builtin -D__RAW__ \
         -Wall -Werror -std=gnu99 -Wstrict-aliasing=2 \
@@ -44,12 +44,12 @@ OBJS =      $(CHIP_OBJS) \
        ../net/net.o \
        ../net/http/fs.o \
        ../net/http/httpd.o \
-       ../net/3c90x.o \
+       ../hardware/net/3c90x.o \
        ../net/rfb.o \
-       ../video/tnt2.o \
-       ../video/fb.o \
-       ../video/generic.o \
-       ../video/text.o \
+       ../hardware/video/tnt2.o \
+       ../hardware/video/fb.o \
+       ../hardware/video/generic.o \
+       ../hardware/video/text.o \
        drivers.o \
        ../lib/minilib.o \
        ../lib/doprnt.o \
This page took 0.04007 seconds and 4 git commands to generate.