diff options
Diffstat (limited to 'build_tools')
-rwxr-xr-x | build_tools/archiso-19/mythvantage/build.sh | 2 | ||||
-rwxr-xr-x | build_tools/archiso-19/mythvantage/go.sh | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/build_tools/archiso-19/mythvantage/build.sh b/build_tools/archiso-19/mythvantage/build.sh index 6ece158..f64ae43 100755 --- a/build_tools/archiso-19/mythvantage/build.sh +++ b/build_tools/archiso-19/mythvantage/build.sh @@ -3,7 +3,7 @@ mknod -m 660 /dev/loop0 b 7 0 set -e -u iso_name=archlinux -iso_label="ARCH_$(date +%Y%m)" +iso_label="LinHES_$(date +%Y%m)" iso_version=$(date +%Y.%m.%d) install_dir=arch work_dir=work diff --git a/build_tools/archiso-19/mythvantage/go.sh b/build_tools/archiso-19/mythvantage/go.sh index 399cae8..dce763e 100755 --- a/build_tools/archiso-19/mythvantage/go.sh +++ b/build_tools/archiso-19/mythvantage/go.sh @@ -1,5 +1,8 @@ #!/bin/bash + +KMS_FILE=/usr/lib/initcpio/install/archiso_kms + function copy_custom(){ cp -f profile_files/$1.png syslinux/splash.png || exit 1 cp -f profile_files/pacman.conf . ||exit 1 @@ -8,6 +11,9 @@ function copy_custom(){ cp -f profile_files/packages.x86_64 . || exit 1 cp -f profile_files/packages.x86_64.cache . || exit 1 cp -f profile_files/pristine.list . || exit 1 + + #remove nouveo + sed -ie "s/^.*add_module \"nouveau\"/#add_module \"novueau\"/" $KMS_FILE } @@ -79,4 +85,4 @@ then date #cd $OLD -fi
\ No newline at end of file +fi |