Changeset 410
- Timestamp:
- Oct 6, 2012, 10:10:36 PM (10 years ago)
- Location:
- branches/contrib/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/contrib/plugins/README
r273 r410 3 3 Layout: 4 4 5 plugins/<plugin-name/ - plugin directory 6 plugins/<plugin-name/debwrt - debwrt patches 7 plugins/<plugin-name/openwrt - openwrt patches 8 plugins/<plugin-name/README - information about the plugin 5 plugins/<plugin-name>/ - plugin directory 6 plugins/<plugin-name>/README - information about the plugin 7 plugins/<plugin-name>/plugin.mk - included as a Makefile by plugins.mk 8 plugins/<plugin-name>/debwrt - debwrt patches 9 plugins/<plugin-name>/openwrt - openwrt patches 9 10 10 11 All plugins are enabled by default and all patches part of the plugin will be … … 15 16 make (menu)config. OpenWrt patches are automatically applied in sort order 16 17 after OpenWrt has been checked out. 18 19 plugin.mk is included by the plugins.mk Makefile. The suggested usage is to 20 add a plugin's target as a prerequisite of an existing DebWrt target. The 21 plugin's target will then be invoked before that DebWrt target. 17 22 18 23 Make targets to manage plugings. Normally only needed when developing a plugin. Targets: -
branches/contrib/plugins/plugins.mk
r285 r410 2 2 # 3 3 # Copyright (C) 2011 Johan van Zoomeren <amain@debwrt.net> 4 # 5 # Copyright (C) 2012 Elliott Mitchell <ehem+debwrt@m5p.com> 6 # 2012-10-06 merged OpenWRT patching with DebWRT's patching of OpenWRT 7 # 2012-10-06 added ability to include Makefile from plugins 4 8 # 5 9 # This program is free software: you can redistribute it and/or modify … … 21 25 PLUGIN_LIST:=$(PLUGIN) 22 26 endif 27 28 -include $(addprefix plugins/,$(addsuffix /plugin.mk,$(PLUGIN_LIST))) 29 30 ##need to resolve the -p0 vs -p1 issue first 31 ## # add the plugin patches to the list of patches to OpenWRT 32 ## OPENWRT_PATCH_DIRS += $(wildcard $(addprefix $(TOPDIR)/plugins/,$(addsuffix /openwrt,$(PLUGIN_LIST)))) 33 34 23 35 24 36 plugins/apply: plugins/apply-debwrt
Note: See TracChangeset
for help on using the changeset viewer.