diff options
author | Daniel Tartavel <contact@librepc.com> | 2018-07-21 12:16:13 +0200 |
---|---|---|
committer | Daniel Tartavel <contact@librepc.com> | 2018-07-21 12:16:13 +0200 |
commit | a4d5ba62acdf6df9423d565d03993afb02a2e0fb (patch) | |
tree | 04c25af1ba47b00d81f5342ff527379c56decd57 /tools | |
parent | 2fca4cadac2f2c382bbf2f88035bc8a1640d6d92 (diff) | |
download | mageia4arm-a4d5ba62acdf6df9423d565d03993afb02a2e0fb.tar mageia4arm-a4d5ba62acdf6df9423d565d03993afb02a2e0fb.tar.gz mageia4arm-a4d5ba62acdf6df9423d565d03993afb02a2e0fb.tar.bz2 mageia4arm-a4d5ba62acdf6df9423d565d03993afb02a2e0fb.tar.xz mageia4arm-a4d5ba62acdf6df9423d565d03993afb02a2e0fb.zip |
- first commit
Diffstat (limited to 'tools')
-rw-r--r-- | tools/install_gstreamer.sh | 20 | ||||
-rw-r--r-- | tools/install_video_driver.sh | 26 | ||||
-rw-r--r-- | tools/install_video_driver.sh~ | 26 | ||||
-rw-r--r-- | tools/install_xfce.sh | 23 | ||||
-rw-r--r-- | tools/install_xfce.sh~ | 23 |
5 files changed, 118 insertions, 0 deletions
diff --git a/tools/install_gstreamer.sh b/tools/install_gstreamer.sh new file mode 100644 index 0000000..de70225 --- /dev/null +++ b/tools/install_gstreamer.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + +/usr/sbin/urpmi --auto --no-verify-rpm gstreamer1.0-schroedinger gstreamer1.0-gsm gstreamer1.0-plugins-ugly gstreamer1.0-opencv gstreamer1.0-vp8 lib64gstreamer-plugins-base1.0_0 gstreamer1.0-flac-1.10.4-2.mga6 gstreamer1.0-amrnb gstreamer1.0-plugins-bad gstreamer1.0-lame gstreamer1.0-plugins-good gstreamer1.0-twolame gstreamer1.0-ofa gstreamer1.0-libav gstreamer1.0-pulse gstreamer1.0-transcoder gstreamer1.0-faad gstreamer1.0-neon gstreamer1.0-mpeg gstreamer1.0-libvisual gstreamer1.0-wavpack gstreamer0.10-xvid gstreamer1.0-mpeg2enc gstreamer1.0-vaapi gstreamer1.0-x264 gstreamer1.0-tools gstreamer1.0-editing-services gstreamer1.0-speex gstreamer1.0-x265 gstreamer1.0-soup gstreamer1.0-a52dec gstreamer1.0-libass diff --git a/tools/install_video_driver.sh b/tools/install_video_driver.sh new file mode 100644 index 0000000..cb7149e --- /dev/null +++ b/tools/install_video_driver.sh @@ -0,0 +1,26 @@ +#!/bin/bash + +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + +/usr/sbin/urpmi --auto --no-verify-rpm x11-driver-video-fbdev + +echo "#!/bin/sh + +# patch for display manager service which do not start automatically +systemctl start display-manager.service &" >/etc/rc.d/rc.local +chmod a+x /etc/rc.d/rc.local diff --git a/tools/install_video_driver.sh~ b/tools/install_video_driver.sh~ new file mode 100644 index 0000000..53691f6 --- /dev/null +++ b/tools/install_video_driver.sh~ @@ -0,0 +1,26 @@ +#!/bin/bash + +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + + +/usr/sbin/urpmi --auto --no-verify-rpm x11-driver-video-fbdev + +echo "#!/bin/sh + +# patch for display manager service which do not start automatically +systemctl start display-manager.service &" >/etc/rc.d/rc.local +chmod a+x /etc/rc.d/rc;local diff --git a/tools/install_xfce.sh b/tools/install_xfce.sh new file mode 100644 index 0000000..7b2618e --- /dev/null +++ b/tools/install_xfce.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +PATH="$(/bin/dirname "$(readlink -f "$0")")" +echo "Path="$PATH +#. $PATH/install_video_driver.sh +#. $PATH/install_gstreamer.sh +#usr/sbin/urpmi --auto --no-verify-rpm task-xfce diff --git a/tools/install_xfce.sh~ b/tools/install_xfce.sh~ new file mode 100644 index 0000000..067be37 --- /dev/null +++ b/tools/install_xfce.sh~ @@ -0,0 +1,23 @@ +#!/bin/bash + +# Copyright (C) 2017-2018 Daniel Tartavel-jeannot <contact@librepc.com> +# + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +PATH="$(/bin/dirname $(readlink -f "$0"))" +echo "Path="$PATH +#. $PATH/install_video_driver.sh +#. $PATH/install_gstreamer.sh +#usr/sbin/urpmi --auto --no-verify-rpm task-xfce |