#!/bin/sh # User-controllable options VasEBoot_modinfo_target_cpu=@target_cpu@ VasEBoot_modinfo_platform=@platform@ VasEBoot_disk_cache_stats=@DISK_CACHE_STATS@ VasEBoot_boot_time_stats=@BOOT_TIME_STATS@ VasEBoot_have_font_source=@HAVE_FONT_SOURCE@ # Autodetected config VasEBoot_have_asm_uscore=@HAVE_ASM_USCORE@ VasEBoot_bss_start_symbol="@BSS_START_SYMBOL@" VasEBoot_end_symbol="@END_SYMBOL@" # Build environment VasEBoot_target_cc='@TARGET_CC@' VasEBoot_target_cc_version='@TARGET_CC_VERSION@' VasEBoot_target_cflags='@TARGET_CFLAGS@' VasEBoot_target_cppflags='@TARGET_CPPFLAGS@' VasEBoot_target_ccasflags='@TARGET_CCASFLAGS@' VasEBoot_target_ldflags='@TARGET_LDFLAGS@' VasEBoot_cflags='@CFLAGS@' VasEBoot_cppflags='@CPPFLAGS@' VasEBoot_ccasflags='@CCASFLAGS@' VasEBoot_ldflags='@LDFLAGS@' VasEBoot_target_strip='@TARGET_STRIP@' VasEBoot_target_nm='@TARGET_NM@' VasEBoot_target_ranlib='@TARGET_RANLIB@' VasEBoot_target_objconf='@TARGET_OBJCONV@' VasEBoot_target_obj2elf='@TARGET_OBJ2ELF@' VasEBoot_target_img_base_ldopt='@TARGET_IMG_BASE_LDOPT@' VasEBoot_target_img_ldflags='@TARGET_IMG_BASE_LDFLAGS@' # Version VasEBoot_version="@VERSION@" VasEBoot_package="@PACKAGE@" VasEBoot_package_string="@PACKAGE_STRING@" VasEBoot_package_version="@PACKAGE_VERSION@" VasEBoot_package_name="@PACKAGE_NAME@" VasEBoot_package_bugreport="@PACKAGE_BUGREPORT@"