.EXPORT_ALL_VARIABLES: ############################################################################ # # Vendor specific settings # CONSOLE_BAUD_RATE = 9600 BUILD_NETtel = 1 include $(ROOTDIR)/vendors/config/config.languages ifeq ($(ROOTDIR)/boot,$(wildcard $(ROOTDIR)/boot)) VENDOR_TOPDIRS = boot endif ############################################################################ # We've used -m5307 here because the bulk of the 5272 instruction timings # happen to be closer to the 5307 than the 5200 series. Luckily, the # actual instructions on the two processors are essentially identical. # This should be fixed at some stage. CPUFLAGS = -m5307 -DCONFIG_COLDFIRE VENDOR_CFLAGS = -DCONFIG_SECUREEDGE # DISABLE_XIP = 1 # XIP works fine # DISABLE_MOVE_RODATA = 1 # move-rodata is fine # DISABLE_SHARED_LIBS = 1 # shared libs are fine # LOPT = -Os # UOPT = -Os # # force some apps to be static # LDLIBS_movdat = -Wl,-elf2flt,-move-rodata $(LDPATH) $(LIBC) LDLIBS_init = _static LDLIBS_sh = _static LDLIBS_netflash = _static LDLIBS_reboot = _static LDLIBS_flashw = _static LDLIBS_pppd = _movdat ############################################################################ include $(ROOTDIR)/vendors/config/m68knommu/config.arch ############################################################################