Changeset a087f2e in mainline


Ignore:
Timestamp:
2010-03-25T11:58:04Z (14 years ago)
Author:
Lenka Trochtova <trochtova.lenka@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eff1a590
Parents:
66babbd
Message:

copy drivers to the ramdisk including their configuration files (ia32)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/amd64/Makefile.inc

    r66babbd ra087f2e  
    3636        $(USPACEDIR)/srv/hid/char_mouse/char_ms
    3737
     38RD_DRVS = \
     39        root
     40
    3841MODULES := $(notdir $(COMPONENTS))
    3942
     
    6467                cp $$file $(USPACEDIR)/dist/srv/ ; \
    6568        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
    6674        for file in $(RD_APPS) ; do \
    6775                cp $$file $(USPACEDIR)/dist/app/ ; \
     
    8290                rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \
    8391        done
     92        for driver in $(RD_DRVS) ; do \
     93                rm -r $(USPACEDIR)/dist/srv/drivers/$$driver ; \
     94        done
    8495        for file in $(RD_APPS) ; do \
    8596                rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \
  • uspace/srv/devman/main.c

    r66babbd ra087f2e  
    150150       
    151151        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);
    152154        return rc;
    153155}
Note: See TracChangeset for help on using the changeset viewer.