Some (unfinished) x86 support

This commit is contained in:
Matthias Schiffer 2014-05-21 19:43:54 +02:00
parent 42da0db96c
commit 356ab27073
7 changed files with 4026 additions and 2 deletions

View File

@ -61,6 +61,7 @@ define GluonModel
endef
include $(GLUONDIR)/targets/targets.mk
include $(GLUONDIR)/targets/$(GLUON_TARGET)/profiles.mk
CheckExternal := test -d $(GLUON_ORIGOPENWRTDIR) || (echo 'You don'"'"'t seem to have obtained the external repositories needed by Gluon; please call `make update` first!'; false)
@ -138,6 +139,7 @@ endef
include $(GLUONDIR)/targets/targets.mk
include $(GLUONDIR)/targets/$(GLUON_TARGET)/profiles.mk
BOARD := $(GLUON_TARGET_$(GLUON_TARGET)_BOARD)
override SUBTARGET := $(GLUON_TARGET_$(GLUON_TARGET)_SUBTARGET)

View File

@ -56,8 +56,6 @@ gluon_target := $(1)$$(if $(2),-$(2))
GLUON_TARGETS += $$(gluon_target)
GLUON_TARGET_$$(gluon_target)_BOARD := $(1)
GLUON_TARGET_$$(gluon_target)_SUBTARGET := $(2)
include $$(GLUONDIR)/targets/$$(gluon_target)/profiles.mk
endef
regex-escape = $(shell echo '$(1)' | sed -e 's/[]\/()$*.^|[]/\\&/g')

View File

@ -1 +1,2 @@
$(eval $(call GluonTarget,ar71xx,generic))
$(eval $(call GluonTarget,x86,generic))

View File

@ -0,0 +1,4 @@
CONFIG_TARGET_x86=y
CONFIG_X86_USE_GRUB2=y
CONFIG_X86_VDI_IMAGES=y
CONFIG_X86_VMDK_IMAGES=y

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
fa7af62e0ef1d529ecb7f7efccc706c3

View File

@ -0,0 +1 @@
$(eval $(call GluonProfile,Generic))