浏览代码

x86/geode: add missing include after rebase

The x86 image generation was refacted via cb007a7bf6 and accidently not
included `geode.mk` when selected as subtarget.

Now the file is included and image compilation for x86/geode works
again.

Thanks to Russell Senior <[email protected]> for reporting the
problem and suggesting a patch!

Signed-off-by: Paul Spooren <[email protected]>
Paul Spooren 5 年之前
父节点
当前提交
3f3a754c68
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      target/linux/x86/image/Makefile

+ 4 - 0
target/linux/x86/image/Makefile

@@ -128,6 +128,10 @@ ifeq ($(SUBTARGET),generic)
   include generic.mk
   include generic.mk
 endif
 endif
 
 
+ifeq ($(SUBTARGET),geode)
+  include geode.mk
+endif
+
 ifeq ($(SUBTARGET),legacy)
 ifeq ($(SUBTARGET),legacy)
   include legacy.mk
   include legacy.mk
 endif
 endif