Commit 7e867725 authored by Matt Weber's avatar Matt Weber Committed by Peter Korsgaard
Browse files

simicsfs: new package



[Peter: use http url as wget complains about certificate]
Signed-off-by: default avatarMatt Weber <matthew.weber@rockwellcollins.com>
Reviewed-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent cd18e2ac
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -151,6 +151,7 @@ menu "Filesystem and flash utilities"
	source "package/mtools/Config.in"
	source "package/nfs-utils/Config.in"
	source "package/ntfs-3g/Config.in"
	source "package/simicsfs/Config.in"
	source "package/squashfs/Config.in"
	source "package/sshfs/Config.in"
	source "package/sunxi-tools/Config.in"
+11 −0
Original line number Diff line number Diff line
comment "simicsfs needs a Linux kernel to be built"
	depends on !BR2_LINUX_KERNEL

config BR2_PACKAGE_SIMICSFS
	bool "simicsfs"
	depends on BR2_LINUX_KERNEL
	help
	  A kernel driver that provides access to a host computer's local
	  filesystem when the target is executing within a SIMICS simulation.

	  http://www.cs.sfu.ca/~fedorova/Tech/simics-guides-3.0.26/simics-user-guide-unix/topic33.html
+21 −0
Original line number Diff line number Diff line
###############################################################################
#
# simicsfs
#
###############################################################################

SIMICSFS_VERSION = 1.17
SIMICSFS_SITE = http://download.simics.net/pub/
SIMICSFS_LICENSE = GPLv2+
SIMICSFS_LICENSE_FILES = hostfs.h
SIMICSFS_DEPENDENCIES = linux

define SIMICSFS_BUILD_CMDS
        $(MAKE) $(LINUX_MAKE_FLAGS) -C $(LINUX_DIR) M=$(@D) modules
endef

define SIMICSFS_INSTALL_TARGET_CMDS
        $(MAKE) $(LINUX_MAKE_FLAGS) -C $(LINUX_DIR) M=$(@D) INSTALL_MOD_PATH=$(TARGET_DIR) modules_install
endef

$(eval $(generic-package))