diff options
-rw-r--r-- | bootsplash.spec | 7 | ||||
-rwxr-xr-x | scripts/make-boot-splash | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/bootsplash.spec b/bootsplash.spec index 3224262..772eb61 100644 --- a/bootsplash.spec +++ b/bootsplash.spec @@ -1,6 +1,6 @@ %define name bootsplash -%define version 1.3.13 -%define release 2mdk +%define version 1.3.14 +%define release 1mdk %define _bootdir /boot Summary: The Boot Splash Images and scripts @@ -101,6 +101,9 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root) %changelog +* Thu Aug 08 2002 Warly <warly@mandrakesoft.com> 1.3.14-1mdk +- add 640x480 resolution in make-boot-splash + * Fri Aug 02 2002 David BAUDENS <baudens@mandrakesoft.com> 1.3.13-2mdk - Update images - Fix make rpm diff --git a/scripts/make-boot-splash b/scripts/make-boot-splash index 0690c41..ff899f3 100755 --- a/scripts/make-boot-splash +++ b/scripts/make-boot-splash @@ -24,7 +24,9 @@ if [[ -z $vgamode || $vgamode == auto ]];then vgamode=$( $splash_dir/scripts/detect-resolution ) fi -if [[ $vgamode == 800* ]];then +if [[ $vgamode == 640* ]];then + resolution=640x480 +elif [[ $vgamode == 800* ]];then resolution=800x600 elif [[ $vgamode == 1024* ]];then resolution=1024x768 |