* conf/any-emu.rmk (kernel_img_SOURCES) [!x86]: Include
kern/$(target_cpu)/cache.S even if TARGET_NO_MODULES = yes.
This commit is contained in:
parent
bde4a9ac1d
commit
ab6316112c
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-06-02 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* conf/any-emu.rmk (kernel_img_SOURCES) [!x86]: Include
|
||||||
|
kern/$(target_cpu)/cache.S even if TARGET_NO_MODULES = yes.
|
||||||
|
|
||||||
2010-06-01 Colin Watson <cjwatson@ubuntu.com>
|
2010-06-01 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
Add btrfs probing support, currently only in the single-device case.
|
Add btrfs probing support, currently only in the single-device case.
|
||||||
|
|
|
@ -20,14 +20,14 @@ TARGET_NO_STRIP = yes
|
||||||
|
|
||||||
ifneq ($(TARGET_NO_MODULES), yes)
|
ifneq ($(TARGET_NO_MODULES), yes)
|
||||||
kernel_img_SOURCES += symlist.c kern/$(target_cpu)/dl.c
|
kernel_img_SOURCES += symlist.c kern/$(target_cpu)/dl.c
|
||||||
|
else
|
||||||
|
kernel_img_SOURCES += grub_emu_init.c
|
||||||
|
endif
|
||||||
ifneq ($(target_cpu), i386)
|
ifneq ($(target_cpu), i386)
|
||||||
ifneq ($(target_cpu), x86_64)
|
ifneq ($(target_cpu), x86_64)
|
||||||
kernel_img_SOURCES += kern/$(target_cpu)/cache.S
|
kernel_img_SOURCES += kern/$(target_cpu)/cache.S
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
else
|
|
||||||
kernel_img_SOURCES += grub_emu_init.c
|
|
||||||
endif
|
|
||||||
|
|
||||||
# For halt.mod.
|
# For halt.mod.
|
||||||
pkglib_MODULES += halt.mod
|
pkglib_MODULES += halt.mod
|
||||||
|
|
Loading…
Reference in a new issue