2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
Disable linux.mod on qemu-mips since it's not functional and leads to compilation failure. * conf/mips.rmk (pkglib_MODULES): Remove linux.mod. * conf/mips-yeeloong.rmk (pkglib_MODULES): Add linux.mod. * conf/mips.rmk (linux_mod_SOURCES): Move from here ... * conf/mips-yeeloong.rmk (linux_mod_SOURCES): ... here * conf/mips.rmk (linux_mod_CFLAGS): Move from here ... * conf/mips-yeeloong.rmk (linux_mod_CFLAGS): ... here * conf/mips.rmk (linux_mod_ASFLAGS): Move from here ... * conf/mips-yeeloong.rmk (linux_mod_ASFLAGS): ... here * conf/mips.rmk (linux_mod_LDFLAGS): Move from here ... * conf/mips-yeeloong.rmk (linux_mod_LDFLAGS): ... here Reported by: BVK Chaitanya
This commit is contained in:
parent
fc8345da98
commit
b54d93ac1b
3 changed files with 22 additions and 6 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,20 @@
|
|||
2010-03-04 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Disable linux.mod on qemu-mips since it's not functional and leads
|
||||
to compilation failure.
|
||||
|
||||
* conf/mips.rmk (pkglib_MODULES): Remove linux.mod.
|
||||
* conf/mips-yeeloong.rmk (pkglib_MODULES): Add linux.mod.
|
||||
* conf/mips.rmk (linux_mod_SOURCES): Move from here ...
|
||||
* conf/mips-yeeloong.rmk (linux_mod_SOURCES): ... here
|
||||
* conf/mips.rmk (linux_mod_CFLAGS): Move from here ...
|
||||
* conf/mips-yeeloong.rmk (linux_mod_CFLAGS): ... here
|
||||
* conf/mips.rmk (linux_mod_ASFLAGS): Move from here ...
|
||||
* conf/mips-yeeloong.rmk (linux_mod_ASFLAGS): ... here
|
||||
* conf/mips.rmk (linux_mod_LDFLAGS): Move from here ...
|
||||
* conf/mips-yeeloong.rmk (linux_mod_LDFLAGS): ... here
|
||||
Reported by: BVK Chaitanya
|
||||
|
||||
2010-03-04 Jordan Uggla <jordan.uggla@gmail.com>
|
||||
|
||||
* INSTALL: Add gettext as a dependency and add qemu to a new section
|
||||
|
|
|
@ -76,6 +76,11 @@ datehook_mod_SOURCES = hook/datehook.c
|
|||
datehook_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||
datehook_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||
|
||||
pkglib_MODULES += linux.mod
|
||||
linux_mod_SOURCES = loader/$(target_cpu)/linux.c
|
||||
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||
linux_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||
linux_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||
|
||||
sbin_SCRIPTS += grub-install
|
||||
grub_install_SOURCES = util/grub-install.in
|
||||
|
|
|
@ -73,10 +73,4 @@ relocator_mod_CFLAGS = $(COMMON_CFLAGS)
|
|||
relocator_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||
relocator_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||
|
||||
pkglib_MODULES += linux.mod
|
||||
linux_mod_SOURCES = loader/$(target_cpu)/linux.c
|
||||
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
||||
linux_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
||||
linux_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
||||
|
||||
include $(srcdir)/conf/common.mk
|
||||
|
|
Loading…
Reference in a new issue