Add tentative support for omitting 486-class kernel bits in a build
This commit is contained in:
parent
2881090376
commit
e531a557c2
3
Makefile
3
Makefile
|
@ -319,6 +319,9 @@ $(BDIR)/rawlist:
|
||||||
if [ "$(FORCE_FIRMWARE)"x != "0"x ] ; then \
|
if [ "$(FORCE_FIRMWARE)"x != "0"x ] ; then \
|
||||||
ARCHDEFS="$$ARCHDEFS -DFORCE_FIRMWARE"; \
|
ARCHDEFS="$$ARCHDEFS -DFORCE_FIRMWARE"; \
|
||||||
fi; \
|
fi; \
|
||||||
|
if [ "$(EXCLUDE_486_KERNEL)"x = "1"x ] ; then \
|
||||||
|
ARCHDEFS="$$ARCHDEFS -DARCH_i386_EXCLUDE_486_KERNEL"; \
|
||||||
|
fi; \
|
||||||
if [ "$(SOURCEONLY)"x != "yes"x ] ; then \
|
if [ "$(SOURCEONLY)"x != "yes"x ] ; then \
|
||||||
cat $(TASKDIR)/$(TASK) | \
|
cat $(TASKDIR)/$(TASK) | \
|
||||||
cpp -nostdinc -nostdinc++ -P -undef $$ARCHDEFS $$VARIANTDEFS\
|
cpp -nostdinc -nostdinc++ -P -undef $$ARCHDEFS $$VARIANTDEFS\
|
||||||
|
|
|
@ -109,16 +109,18 @@ libc6-i686
|
||||||
* Kernel headers are included as third party modules are commonly
|
* Kernel headers are included as third party modules are commonly
|
||||||
* used on this architecture.
|
* used on this architecture.
|
||||||
*/
|
*/
|
||||||
linux-image-2.6-486
|
|
||||||
linux-headers-2.6-486
|
|
||||||
linux-image-2.6-686
|
linux-image-2.6-686
|
||||||
linux-headers-2.6-686
|
linux-headers-2.6-686
|
||||||
loop-aes-modules-2.6-486
|
|
||||||
loop-aes-modules-2.6-686
|
loop-aes-modules-2.6-686
|
||||||
atl2-modules-2.6-486
|
|
||||||
atl2-modules-2.6-686
|
atl2-modules-2.6-686
|
||||||
speakup-modules-2.6-486
|
|
||||||
speakup-modules-2.6-686
|
speakup-modules-2.6-686
|
||||||
|
#ifndef ARCH_i386_EXCLUDE_486_KERNEL
|
||||||
|
linux-image-2.6-486
|
||||||
|
linux-headers-2.6-486
|
||||||
|
loop-aes-modules-2.6-486
|
||||||
|
atl2-modules-2.6-486
|
||||||
|
speakup-modules-2.6-486
|
||||||
|
#endif
|
||||||
#ifdef VARIANT_xen
|
#ifdef VARIANT_xen
|
||||||
linux-image-2.6-686-bigmem
|
linux-image-2.6-686-bigmem
|
||||||
linux-headers-2.6-686-bigmem
|
linux-headers-2.6-686-bigmem
|
||||||
|
|
Loading…
Reference in New Issue