aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/make-boot-splash
blob: 505e841ea3d1a11d76e9ae6b445cefaab43f54c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
# -*- Mode: shell-script -*-
# Copyright (C) 2002 by Chmouel Boudjnah <chmouel@mandrakesoft.com>
# Redistribution of this file is permitted under the terms of the GNU 
# Public License (GPL)
# $Id$

: ${splash_dir=/usr/share/bootsplash}

[[ -f /etc/sysconfig/bootsplash ]] && source /etc/sysconfig/bootsplash
[[ -z $THEME ]] && THEME=Mandriva

[ $# = 2 ] || { echo "usage: $0 <initrd> <resolution>"; exit 1; }

initrd_file=$1

plymouth-set-default-theme $THEME

$splash_dir/scripts/make-boot-splash-raw $initrd_file $THEME || exit 1
    
if [ -z "$DURING_INSTALL" ]; then
    $splash_dir/scripts/switch-themes -u
fi