From 65971818a573c47f182de461092d60bf1c63cc2b Mon Sep 17 00:00:00 2001 From: Simon Rettberg Date: Wed, 21 Aug 2013 16:28:42 +0200 Subject: [rootfs-stage32] Make it possible to run a script after adding an addon to the aufs stack. Call it addon-init and place it in the root directory of your addon [vmplayer] Add such an addon-init script that will take care of setting up the vmplayer environment --- remote/modules/vmplayer/data/addon-init | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 remote/modules/vmplayer/data/addon-init (limited to 'remote/modules') diff --git a/remote/modules/vmplayer/data/addon-init b/remote/modules/vmplayer/data/addon-init new file mode 100755 index 00000000..01acb3b4 --- /dev/null +++ b/remote/modules/vmplayer/data/addon-init @@ -0,0 +1,5 @@ +#!/bin/sh + +systemctl daemon-reload +systemctl start vmware + -- cgit v1.2.3-55-g7522 From faff0f925ea99662cefb649c81ea22bc346ec13c Mon Sep 17 00:00:00 2001 From: Jonathan Bauer Date: Thu, 22 Aug 2013 16:32:36 +0200 Subject: [plymouth] moved plymouth stuff to /usr. Uses PREFIX from the config file --- remote/modules/plymouth/plymouth.build | 3 ++- remote/modules/plymouth/plymouth.conf | 13 +++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) (limited to 'remote/modules') diff --git a/remote/modules/plymouth/plymouth.build b/remote/modules/plymouth/plymouth.build index 1346f087..e46541f3 100644 --- a/remote/modules/plymouth/plymouth.build +++ b/remote/modules/plymouth/plymouth.build @@ -7,7 +7,8 @@ fetch_source() { build() { cd src/$VERSION pinfo "Running configure" - ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix=""|| perror "failed." + + ./configure --enable-systemd-integration --disable-gtk --disable-static --prefix="$PREFIX"|| perror "failed." pinfo "Running make" make || perror "failed" pinfo "Running make install" diff --git a/remote/modules/plymouth/plymouth.conf b/remote/modules/plymouth/plymouth.conf index ec6f8571..d9acf6a3 100644 --- a/remote/modules/plymouth/plymouth.conf +++ b/remote/modules/plymouth/plymouth.conf @@ -1,14 +1,15 @@ VERSION=plymouth-0.8.6.1 URL=http://www.freedesktop.org/software/plymouth/releases/${VERSION}.tar.bz2 +PREFIX="/usr" REQUIRED_BINARIES=" plymouth plymouthd " REQUIRED_DIRECTORIES=" - /bin - /etc - /lib - /sbin - /var/lib - /var/spool + $PREFIX/bin + $PREFIX/etc + $PREFIX/lib + $PREFIX/sbin + $PREFIX/var/lib + $PREFIX/var/spool " -- cgit v1.2.3-55-g7522