From 7db1608bcf951656eb611367dde0045792f3cc16 Mon Sep 17 00:00:00 2001 From: Fierelier Date: Mon, 26 Sep 2022 11:09:31 +0200 Subject: [PATCH] Separate automake scripts --- path/wdvn-automake | 4 ++-- path/wdvn-automake-proprietary | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) create mode 100755 path/wdvn-automake-proprietary diff --git a/path/wdvn-automake b/path/wdvn-automake index f412777..3c1be39 100755 --- a/path/wdvn-automake +++ b/path/wdvn-automake @@ -4,11 +4,11 @@ if [ -d "output" ]; then rm -rf "output" fi -wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-make output base hardware graphical graphical-xfce4 live finish wdvn-image-iso output "$(wdvn-name).iso" rm -rf "output" source wdvn-env-amd64 -wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-make output base hardware graphical graphical-xfce4 live finish wdvn-image-iso output "$(wdvn-name).iso" rm -rf "output" \ No newline at end of file diff --git a/path/wdvn-automake-proprietary b/path/wdvn-automake-proprietary new file mode 100755 index 0000000..1d812c1 --- /dev/null +++ b/path/wdvn-automake-proprietary @@ -0,0 +1,14 @@ +#!/bin/bash +set -e +if [ -d "output" ]; then + rm -rf "output" +fi + +wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-image-iso output "$(wdvn-name)_proprietary.iso" +rm -rf "output" + +source wdvn-env-amd64 +wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish +wdvn-image-iso output "$(wdvn-name)_proprietary.iso" +rm -rf "output" \ No newline at end of file