From b94ec3eca8d93e7502c28915eb11d1f1764ebe79 Mon Sep 17 00:00:00 2001 From: balrog Date: Mon, 14 Jan 2008 02:36:29 +0000 Subject: [PATCH] =?UTF-8?q?Fully=20clean=20up=20on=20Mac=20OS=20X=20Leopar?= =?UTF-8?q?d=20(Andreas=20F=C3=A4rber).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3907 c046a42c-6fe2-441c-8c8c-71466251a162 --- .cvsignore | 1 + Makefile | 1 + hw/gumstix.c | 4 +++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.cvsignore b/.cvsignore index 81d708236e..232fbdda81 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,5 +1,6 @@ config-host.* dyngen +dyngen.dSYM i386 *-softmmu *-darwin-user diff --git a/Makefile b/Makefile index e76d617726..c60f3df399 100644 --- a/Makefile +++ b/Makefile @@ -146,6 +146,7 @@ clean: # avoid old build problems by removing potentially incorrect old files rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~ + rm -rf dyngen.dSYM rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d $(MAKE) -C tests clean for d in $(TARGET_DIRS); do \ diff --git a/hw/gumstix.c b/hw/gumstix.c index 2cf52f9c07..81bb9578d0 100644 --- a/hw/gumstix.c +++ b/hw/gumstix.c @@ -76,9 +76,11 @@ static void connex_init(int ram_size, int vga_ram_size, cpu->env->regs[15] = 0x00000000; - /* Interrupt line of NIC is connected to GPIO line 36 */ + /* Interrupt lines of the NICs are connected to GPIO lines 36 and 27 */ smc91c111_init(&nd_table[0], 0x04000300, pxa2xx_gpio_in_get(cpu->gpio)[36]); + smc91c111_init(&nd_table[1], 0x08000300, + pxa2xx_gpio_in_get(cpu->gpio)[36]); } static void verdex_init(int ram_size, int vga_ram_size,