# ========================================================================== # Installing dtb files # # Installs all dtb files listed in $(dtb-y) either in the # INSTALL_DTBS_PATH directory or the default location: # # $INSTALL_PATH/dtbs/$KERNELRELEASE # # Traverse through subdirectories listed in $(dts-dirs). # ========================================================================== src := $(obj) PHONY := __dtbs_install __dtbs_install: export dtbinst-root ?= $(obj) include include/config/auto.conf include scripts/Kbuild.include include $(src)/Makefile PHONY += __dtbs_install_prep __dtbs_install_prep: ifeq ("$(dtbinst-root)", "$(obj)") $(Q)mkdir -p $(INSTALL_DTBS_PATH) endif dtbinst-files := $(dtb-y) dtbinst-dirs := $(dts-dirs) # Helper targets for Installing DTBs into the boot directory quiet_cmd_dtb_install = INSTALL $< cmd_dtb_install = mkdir -p $(2); cp $< $(2) install-dir = $(patsubst $(dtbinst-root)%,$(INSTALL_DTBS_PATH)%,$(obj)) $(dtbinst-files) $(dtbinst-dirs): | __dtbs_install_prep $(dtbinst-files): %.dtb: $(obj)/%.dtb $(call cmd,dtb_install,$(install-dir)) $(dtbinst-dirs): $(Q)$(MAKE) $(dtbinst)=$(obj)/$@ PHONY += $(dtbinst-files) $(dtbinst-dirs) __dtbs_install: $(dtbinst-files) $(dtbinst-dirs) .PHONY: $(PHONY) pump-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/sched
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2017-02-01 14:10:04 -0500
committerDavid S. Miller <davem@davemloft.net>2017-02-01 14:10:04 -0500
commit974c3f19acebaa40e391c69056ccf851e40a9c0c (patch)
tree1e4376749b1368e119885639c82edb152d2f2545 /net/sched
parent6107dbdb64465848e310b85ebe589236e24a9680 (diff)
parentf3b20313aef93f9cfda76fec2c05625f88510f18 (diff)
Merge branch 'act_sample-Little-fixes'
Yotam Gigi says: ==================== net/sched: act_sample: Little fixes Little fixes in sample tc action. ==================== Acked-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/act_sample.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/sched/act_sample.c b/net/sched/act_sample.c