Skip to content

kernel for S905X and S912 #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ SUBARCH := $(shell uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ \
# "make" in the configured kernel build directory always uses that.
# Default value for CROSS_COMPILE is not to prefix executables
# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
ARCH ?=
CROSS_COMPILE ?=
ARCH ?= $(SUBARCH)
CROSS_COMPILE ?= $(CONFIG_CROSS_COMPILE:"%"=%)

# Architecture as present in compile.h
UTS_MACHINE := $(ARCH)
Expand Down
2 changes: 1 addition & 1 deletion arch/arm64/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ zinstall install: vmlinux
%.dtb: scripts
$(if $(filter $@,$(mesondtb)),\
$(Q)$(MAKE) $(build)=$(boot)/dts/amlogic $(boot)/dts/amlogic/$@,\
$(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@)
$(Q)$(MAKE) $(build)=customer/$(boot)/dts customer/$(boot)/dts/$@)

dtbs: scripts
$(Q)$(MAKE) $(build)=$(boot)/dts dtbs
Expand Down
11 changes: 7 additions & 4 deletions arch/arm64/boot/dts/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
dtb-$(CONFIG_ARCH_VEXPRESS) += rtsm_ve-aemv8a.dtb foundation-v8.dtb \
fvp-base-gicv2-psci.dtb
dtb-$(CONFIG_ARCH_XGENE) += apm-mustang.dtb
dtb-$(CONFIG_ARCH_VEXPRESS) += juno.dtb
dtb-$(CONFIG_ARM64) += kvim_nougat.dtb \
kvim_multios.dtb \
kvim2_nougat.dtb \
kvim2_dualos.dtb \
kvim2_multios.dtb \
kvim2_libreelec.dtb \
kvim2_linux.dtb

targets += dtbs

Expand Down
Loading