Compare commits

...

2 Commits

Author SHA1 Message Date
Takumi Sueda e8fc0d0cf3
Merge pull request #30 from brain-hackers/fix-x1
sharp: fix x1 build and logo
2024-02-03 23:12:13 -08:00
Takumi Sueda 0347299670 sharp: fix x1 build and logo
1. don't compile the i.MX28-only part for other SoCs. 2. append cpu_clkdiv.o rather than assigning
2024-02-04 16:10:11 +09:00
1 changed files with 3 additions and 1 deletions

View File

@ -4,4 +4,6 @@ obj-$(CONFIG_VIDEO_MXS) += dma.o
else
obj- = __dummy__.o
endif
obj-y := cpu_clkdiv.o
ifdef CONFIG_ARCH_MX28
obj-$(CONFIG_ARCH_MX28) += cpu_clkdiv.o
endif