diff options
| author | Christian Rößler | 2013-09-20 16:31:08 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2013-09-30 13:26:31 +0200 |
| commit | f7425449123861b8057f1c2b5800947d7b84f135 (patch) | |
| tree | 6d80f1c793b98f068ddea228ac46323e3606c9a9 | |
| parent | [debug] Fix service type of udevd-logger (diff) | |
| download | tm-scripts-f7425449123861b8057f1c2b5800947d7b84f135.tar.gz tm-scripts-f7425449123861b8057f1c2b5800947d7b84f135.tar.xz tm-scripts-f7425449123861b8057f1c2b5800947d7b84f135.zip | |
[rootfs-stage32] buildscript and conf file updated for openSuse
| -rw-r--r-- | remote/rootfs/rootfs-stage32/rootfs-stage32.build | 3 | ||||
| -rw-r--r-- | remote/rootfs/rootfs-stage32/rootfs-stage32.conf.opensuse | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/remote/rootfs/rootfs-stage32/rootfs-stage32.build b/remote/rootfs/rootfs-stage32/rootfs-stage32.build index 02f238de..94642a8c 100644 --- a/remote/rootfs/rootfs-stage32/rootfs-stage32.build +++ b/remote/rootfs/rootfs-stage32/rootfs-stage32.build @@ -33,7 +33,8 @@ build() { pinfo "Searching libraries from config file in system... (could take some time)" for LIB in ${REQUIRED_LIBRARIES} do - for LIB_LOCATION in $(find /lib/ -name "${LIB}.so*") + # lib + lib64: Ugly hack, will be replaced by a better solution + for LIB_LOCATION in $(find /lib/ /lib64/ -name "${LIB}.so*") do get_link_chain "${LIB_LOCATION}" >> "${FILELIST}" done diff --git a/remote/rootfs/rootfs-stage32/rootfs-stage32.conf.opensuse b/remote/rootfs/rootfs-stage32/rootfs-stage32.conf.opensuse index bd9b7562..316cb5e4 100644 --- a/remote/rootfs/rootfs-stage32/rootfs-stage32.conf.opensuse +++ b/remote/rootfs/rootfs-stage32/rootfs-stage32.conf.opensuse @@ -3,9 +3,11 @@ REQUIRED_INSTALLED_PACKAGES=" xfsprogs squashfs timezone + libcap2 " REQUIRED_CONTENT_PACKAGES=" timezone + libcap2 " REQUIRED_DIRECTORIES=" /usr/$LIB64/xtables |
