BAS: Fix some build errors wtih apps/examples/bastest

This commit is contained in:
Gregory Nutt 2014-11-07 15:35:09 -06:00
parent e0b6137de7
commit c2c42f5e5b
5 changed files with 32 additions and 13 deletions

View File

@ -38,6 +38,10 @@ ifeq ($(CONFIG_EXAMPLES_ADC),y)
CONFIGURED_APPS += examples/adc
endif
ifeq ($(CONFIG_EXAMPLES_BASTEST),y)
CONFIGURED_APPS += examples/bastest
endif
ifeq ($(CONFIG_EXAMPLES_BUTTONS),y)
CONFIGURED_APPS += examples/buttons
endif

View File

@ -1,6 +1,8 @@
/Make.dep
/.depend
/.built
/romfs.img
/romfs.h
/*.asm
/*.obj
/*.rel

View File

@ -8,7 +8,7 @@ config EXAMPLES_BASTEST
default n
depends on INTERPRETERS_BAS
---help---
Mount the ROMFS file system containing the BAS test files.
Mount the ROMFS file system containing the BAS test files at /mnt/romfs.
if EXAMPLES_BASTEST

View File

@ -78,8 +78,8 @@ endif
BASTEST_DIR = $(APPDIR)$(DELIM)examples$(DELIM)bastest
TESTS_DIR = $(BASTEST_DIR)$(DELIM)tests
ROMFS_IMG = $(BASTEST_DIR)$(DELIM)romfs.img
ROMFS_HDR = $(BASTEST_DIR)$(DELIM)romfs.h
ROMFS_IMG = romfs.img
ROMFS_HDR = romfs.h
PROGNAME = bastest$(EXEEXT)
@ -98,15 +98,19 @@ $(AOBJS): %$(OBJEXT): %.S
$(COBJS) $(MAINOBJ): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
.built: $(OBJS)
$(call ARCHIVE, $(BIN), $(OBJS))
@touch .built
# Create the romfs.h header file from the tests/ directory
$(ROMFS_IMG) :
$(Q) genromfs -f $@ -d $(TESTS_DIR) -V "BASTEST"
$(ROMFS_HDR) : $(ROMFS_IMG)
$(Q) genromfs -f $@ -d $(TESTS_DIR) -V "BASTEST"
$(Q) (xxd -i romfs.img | sed -e "s/^unsigned/static const unsigned/g" >$@)
$(Q) (xxd -i $(ROMFS_IMG) | sed -e "s/^unsigned/static const unsigned/g" >$@)
# Add the BASTEST object to the archive
.built: $(ROMFS_HDR) $(OBJS)
$(call ARCHIVE, $(BIN), $(OBJS))
@touch .built
# Link and install the program binary
@ -123,7 +127,7 @@ install:
endif
# Register the NSH builtin appliation
# Register the NSH builtin application
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
@ -147,6 +151,8 @@ clean:
$(call CLEAN)
distclean: clean
$(call DELFILE, $(ROMFS_HDR))
$(call DELFILE, $(ROMFS_IMG))
$(call DELFILE, Make.dep)
$(call DELFILE, .depend)

View File

@ -38,7 +38,12 @@
****************************************************************************/
#include <nuttx/config.h>
#include <sys/mount.h>
#include <stdio.h>
#include <errno.h>
#include <nuttx/fs/ramdisk.h>
#include "romfs.h"
@ -93,6 +98,8 @@ int main(int argc, FAR char *argv[])
int bastest_main(int argc, char *argv[])
#endif
{
int ret;
/* Create a ROM disk for the ROMFS filesystem */
printf("Registering romdisk at /dev/ram%d\n", CONFIG_EXAMPLES_BASTEST_DEVMINOR);
@ -100,19 +107,19 @@ int bastest_main(int argc, char *argv[])
NSECTORS(romfs_img_len), SECTORSIZE);
if (ret < 0)
{
err("ERROR: romdisk_register failed: %d\n", ret);
fprintf(stderr, "ERROR: romdisk_register failed: %d\n", ret);
return 1;
}
/* Mount the file system */
message("Mounting ROMFS filesystem at target=%s with source=%s\n",
printf("Mounting ROMFS filesystem at target=%s with source=%s\n",
MOUNTPT, CONFIG_EXAMPLES_BASTEST_DEVPATH);
ret = mount(CONFIG_EXAMPLES_BASTEST_DEVPATH, MOUNTPT, "romfs", MS_RDONLY, NULL);
if (ret < 0)
{
err("ERROR: mount(%s,%s,romfs) failed: %s\n",
fprintf(stderr, "ERROR: mount(%s,%s,romfs) failed: %s\n",
CONFIG_EXAMPLES_BASTEST_DEVPATH, MOUNTPT, errno);
return 1;
}