~ubuntu-branches/debian/stretch/grub-splashimages/stretch

« back to all changes in this revision

Viewing changes to README

  • Committer: Bazaar Package Importer
  • Author(s): Luis R. Rodriguez
  • Date: 2004-07-06 23:50:48 UTC
  • Revision ID: james.westby@ubuntu.com-20040706235048-a4b4h1kzt541jphc
Tags: 1.0
Put a collection of splashimages into a debian package
(closes: #266071)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
Author: Luis R. Rodriguez <mcgrof@ruslug.rutgers.edu>
 
3
 
 
4
Debian GRUB Splashimages
 
5
------------------------
 
6
 
 
7
1. How to make one?
 
8
 
 
9
  For a HOWTO on how to create one visit:
 
10
 
 
11
  http://ruslug.rutgers.edu/~mcgrof/grub-images/
 
12
 
 
13
  Basic instructions:
 
14
  * xpm file format
 
15
  * 640x480
 
16
  * 14 colors only
 
17
 
 
18
  GRUB understands xpm files directly but since they can be big we compress
 
19
  them hence you'll usually see splashimages with file extensions of xpm.gz.
 
20
 
 
21
  Note: be careful, gzip'ing a file and then renaming won't work. You must
 
22
  gzip the original name. Why? .gz files contains the original name of the 
 
23
  file and grub relies on this.
 
24
 
 
25
---
 
26
 
 
27
2. How to submit one?
 
28
 
 
29
  If you'd like your splashimage in this package send them to mcgrof@ruslug.rutgers.edu
 
30
 
 
31
---
 
32
 
 
33
3. License?
 
34
 
 
35
 Include a License that will allow me to redistribute it that is compliant
 
36
 with the "Debian Free Software Guidelines" [1]. I like the GPL ;). 
 
37
 Fortuntely the xpm file format accept C99 comments, so you can just edit the 
 
38
 file with your favorite editor (vim, emacs) and add some text like the following: 
 
39
 
 
40
[1] http://www.debian.org/social_contract.html#guidelines
 
41
 
 
42
---
 
43
 
 
44
/* 
 
45
* Copyright 2004 Your Name <yourname@yourdomain.com>
 
46
 
47
* This xpm file image is free software; you can redistribute it and/or
 
48
* modify it under the terms of the GNU General Public License as
 
49
* published by the Free Software Foundation; either version 2 
 
50
* of the License, or (at your option) any later version.
 
51
*
 
52
* This xpm file image is distributed in the hope that it will be
 
53
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty
 
54
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
 
55
* the GNU General Public License for more details.
 
56
*
 
57
* You should have received a copy of the GNU General
 
58
* Public License along with this image; if not, write to the Free
 
59
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 
60
* MA  02111-1307  USA
 
61
*/
 
62