Changeset a087f2e in mainline
- Timestamp:
- 2010-03-25T11:58:04Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- eff1a590
- Parents:
- 66babbd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
r66babbd ra087f2e 36 36 $(USPACEDIR)/srv/hid/char_mouse/char_ms 37 37 38 RD_DRVS = \ 39 root 40 38 41 MODULES := $(notdir $(COMPONENTS)) 39 42 … … 64 67 cp $$file $(USPACEDIR)/dist/srv/ ; \ 65 68 done 69 for driver in $(RD_DRVS); do \ 70 mkdir -p $(USPACEDIR)/dist/srv/drivers/$$driver ; \ 71 cp $(USPACEDIR)/srv/drivers/$$driver/$$driver.ma $(USPACEDIR)/dist/srv/drivers/$$driver/ ; \ 72 cp $(USPACEDIR)/srv/drivers/$$driver/$$driver $(USPACEDIR)/dist/srv/drivers/$$driver/ ; \ 73 done 66 74 for file in $(RD_APPS) ; do \ 67 75 cp $$file $(USPACEDIR)/dist/app/ ; \ … … 82 90 rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \ 83 91 done 92 for driver in $(RD_DRVS) ; do \ 93 rm -r $(USPACEDIR)/dist/srv/drivers/$$driver ; \ 94 done 84 95 for file in $(RD_APPS) ; do \ 85 96 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ -
uspace/srv/devman/main.c
r66babbd ra087f2e 150 150 151 151 list_append(&match_id->link, &match_ids->ids); 152 153 printf(NAME ": received match id '%s', score = %d \n", match_id->id, match_id->score); 152 154 return rc; 153 155 }
Note:
See TracChangeset
for help on using the changeset viewer.