Changeset 53238ba in mainline


Ignore:
Timestamp:
2013-12-03T11:27:01Z (10 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
68bacce
Parents:
29b4888
Message:

Add overlay directory for extra files

Useful for adding extra applications into app/ etc.

Location:
boot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    r29b4888 r53238ba  
    8080                cp "$(USPACE_PATH)/$(DRVS_PATH)/$$file_dir/$$file_name/$$file_name.dev" "$(DIST_PATH)/$(DRVS_PATH)/$$file_name/" ; \
    8181        done
     82        if ls $(DIST_OVERLAY_PATH)/* >/dev/null; then \
     83                cp -r -L $(DIST_OVERLAY_PATH)/* "$(DIST_PATH)"; \
     84        fi
    8285
    8386clean: clean_dist
  • boot/Makefile.common

    r29b4888 r53238ba  
    4848USPACE_PATH = $(ROOT_PATH)/uspace
    4949DIST_PATH = $(USPACE_PATH)/dist
     50DIST_OVERLAY_PATH = $(USPACE_PATH)/overlay
    5051TOOLS_PATH = $(ROOT_PATH)/tools
    5152DRVS_PATH = drv
Note: See TracChangeset for help on using the changeset viewer.