simicsfs: new package
[Peter: use http url as wget complains about certificate] Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
cd18e2acee
commit
7e867725ac
@ -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
package/simicsfs/Config.in
Normal file
11
package/simicsfs/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
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
package/simicsfs/simicsfs.mk
Normal file
21
package/simicsfs/simicsfs.mk
Normal file
@ -0,0 +1,21 @@
|
||||
###############################################################################
|
||||
#
|
||||
# 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))
|
Loading…
Reference in New Issue
Block a user