From: John Hodge Date: Fri, 25 Nov 2011 14:41:17 +0000 (+0800) Subject: Light fixes to build bugs X-Git-Tag: rel0.14~69 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=89280969bb7e3d9dc9d415c3a0fb0760971754e6;p=tpg%2Facess2.git Light fixes to build bugs --- diff --git a/EditBoot b/EditBoot index fa71e4d7..06e2aab2 100755 --- a/EditBoot +++ b/EditBoot @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash #./MountDisk #vim mnt/boot/menu.lst #sudo umount mnt/ diff --git a/Modules/USB/UHCI/uhci.c b/Modules/USB/UHCI/uhci.c index 83059ad2..2018d5fa 100644 --- a/Modules/USB/UHCI/uhci.c +++ b/Modules/USB/UHCI/uhci.c @@ -80,6 +80,7 @@ int UHCI_Initialise(const char **Arguments) } cinfo->RootHub = USB_RegisterHost(&gUHCI_HostDef, cinfo, 2); + LOG("cinfo->RootHub = %p", cinfo->RootHub); i ++; } diff --git a/Usermode/Applications/axwin3_src/Makefile b/Usermode/Applications/axwin3_src/Makefile index 9a59a5f5..caa174d9 100644 --- a/Usermode/Applications/axwin3_src/Makefile +++ b/Usermode/Applications/axwin3_src/Makefile @@ -11,8 +11,12 @@ SUBMAKE = $(MAKE) --no-print-directory all: @$(foreach DIR,$(DIRS), echo --- $(NAME)/$(DIR) && $(SUBMAKE) -C $(DIR) $@ &&) true -install: $(FILES) +install: + @$(xMKDIR) $(DISTROOT)/Apps ; true + @$(xMKDIR) $(DISTROOT)/Apps/AxWin ; true + @$(xMKDIR) $(DISTROOT)/Apps/3.0 ; true @$(foreach DIR,$(DIRS), echo --- $(NAME)/$(DIR) && $(SUBMAKE) -C $(DIR) $@ &&) true + @$(foreach FILE,$(FILES), $(SUBMAKE) $FILE;) true clean: @$(foreach DIR,$(DIRS), $(SUBMAKE) -C $(DIR) $@ &&) true