NI Linux Real-Time Discussions

cancel
Showing results for 
Search instead for 
Did you mean: 

Mounting a folder

HI there,

did ever anyone encounter issues when connecting to a share that has a DFS Filesystem? Just looking where I can find keyutils that I can install

0 Kudos
Message 31 of 32
(804 Views)

Hi there, philipp.n,

I hadn't had a chace to look into it further until now, but I've had difficulty tracking down a pre-built package for this that would work with our targets. I would recommend building the source on your target once the appropriate tools are installed and available.

I don't have a DFS network configuration to try this out on, but I was able to build and install the keyutils package as follows:

From your target:

// Update the on-target feed view

opkg update

// Install packages needed to get and build the component

// packagegroup-core-buildessential - covers most of the build tools

// coreutils - provides the "install" program

// findutils - replaces the busybox "find" which does not provide functionality needed by the source

// ldd - used by the source build process

// file - needed by the source build process

// git - source control system that is used to control keyutils

// sed - replaces the busybox "sed" which does not provide functionality needed by the source

opkg install packagegroup-core-buildessential coreutils findutils ldd file git sed

// Clone down (download) the source from upstream

git clone git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git

cd keyutils

// Set up some variables needed by the source build

export LIBDIR=/lib

export USRLIBDIR=/usr/lib

// Build and install

make

make install

0 Kudos
Message 32 of 32
(804 Views)