mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
Fix QEMU build target name
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3345 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
@@ -1526,3 +1526,5 @@
|
|||||||
i486 port.
|
i486 port.
|
||||||
* arch/arm/src/stm32/stm32_spi.c -- Correct base address of SPI3 (reported by
|
* arch/arm/src/stm32/stm32_spi.c -- Correct base address of SPI3 (reported by
|
||||||
Uros Platise).
|
Uros Platise).
|
||||||
|
* drivers/mmcsd/mmcsd_sdio.c -- Correct a loop termination condition (also
|
||||||
|
reported by Uros Platise).
|
||||||
|
|||||||
@@ -2150,6 +2150,8 @@ nuttx-5.19 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
|||||||
i486 port.
|
i486 port.
|
||||||
* arch/arm/src/stm32/stm32_spi.c -- Correct base address of SPI3 (reported by
|
* arch/arm/src/stm32/stm32_spi.c -- Correct base address of SPI3 (reported by
|
||||||
Uros Platise).
|
Uros Platise).
|
||||||
|
* drivers/mmcsd/mmcsd_sdio.c -- Correct a loop termination condition (also
|
||||||
|
reported by Uros Platise).
|
||||||
|
|
||||||
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||||
|
|
||||||
|
|||||||
@@ -42,13 +42,13 @@ ARCH_SUBDIR = i486
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(WINTOOL),y)
|
ifeq ($(WINTOOL),y)
|
||||||
NUTTX = "${shell cygpath -w $(TOPDIR)/nuttx$(EXEEXT)}"
|
NUTTX = "${shell cygpath -w $(TOPDIR)/nuttx}"
|
||||||
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
|
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
|
||||||
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
|
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
|
||||||
-I "${shell cygpath -w $(ARCH_SRCDIR)/$(ARCH_SUBDIR)}" \
|
-I "${shell cygpath -w $(ARCH_SRCDIR)/$(ARCH_SUBDIR)}" \
|
||||||
-I "${shell cygpath -w $(TOPDIR)/sched}"
|
-I "${shell cygpath -w $(TOPDIR)/sched}"
|
||||||
else
|
else
|
||||||
NUTTX = $(TOPDIR)/nuttx$(EXEEXT)
|
NUTTX = $(TOPDIR)/nuttx
|
||||||
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common \
|
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common \
|
||||||
-I$(ARCH_SRCDIR)/$(ARCH_SUBDIR) -I$(TOPDIR)/sched
|
-I$(ARCH_SRCDIR)/$(ARCH_SUBDIR) -I$(TOPDIR)/sched
|
||||||
endif
|
endif
|
||||||
|
|||||||
@@ -65,6 +65,7 @@
|
|||||||
# the 100 second delay then adjust CONFIG_BOARD_LOOPSPERMSEC until
|
# the 100 second delay then adjust CONFIG_BOARD_LOOPSPERMSEC until
|
||||||
# the delay actually is 100 seconds.
|
# the delay actually is 100 seconds.
|
||||||
# CONFIG_ARCH_DMA - Support DMA initialization
|
# CONFIG_ARCH_DMA - Support DMA initialization
|
||||||
|
# CONFIG_X86_NASM - Using Nasm instead of GAS
|
||||||
#
|
#
|
||||||
CONFIG_ARCH=x86
|
CONFIG_ARCH=x86
|
||||||
CONFIG_ARCH_X86=y
|
CONFIG_ARCH_X86=y
|
||||||
@@ -82,6 +83,7 @@ CONFIG_ARCH_LEDS=n
|
|||||||
CONFIG_ARCH_BUTTONS=n
|
CONFIG_ARCH_BUTTONS=n
|
||||||
CONFIG_ARCH_CALIBRATION=n
|
CONFIG_ARCH_CALIBRATION=n
|
||||||
CONFIG_ARCH_DMA=n
|
CONFIG_ARCH_DMA=n
|
||||||
|
CONFIG_X86_NASM=n
|
||||||
|
|
||||||
#
|
#
|
||||||
# General OS setup
|
# General OS setup
|
||||||
@@ -213,7 +215,7 @@ CONFIG_ARCH_KMALLOC=n
|
|||||||
CONFIG_ARCH_KZMALLOC=n
|
CONFIG_ARCH_KZMALLOC=n
|
||||||
CONFIG_ARCH_KFREE=n
|
CONFIG_ARCH_KFREE=n
|
||||||
|
|
||||||
##
|
#
|
||||||
# General build options
|
# General build options
|
||||||
#
|
#
|
||||||
# CONFIG_RRLOAD_BINARY - make the rrload binary format used with BSPs from
|
# CONFIG_RRLOAD_BINARY - make the rrload binary format used with BSPs from
|
||||||
|
|||||||
Reference in New Issue
Block a user