summaryrefslogtreecommitdiff
path: root/doc/devel/livecd
blob: a3e3bb942bdff97112a6d871d6a725b8148dbe42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
This file contains notes about considerations for developing a live CD
for UQM.


Information on creating boot CD's:
- http://www.geocities.com/potato.geo/bootlinuxcd.html
- man mkisofs
- http://linuxfromscratch.org/~jhuntwork/livecd/
- http://www.tldp.org/HOWTO/Bootdisk-HOWTO/


Desirable features:
- Both Linux native mode (when booting directly from the CD),
  an MS Windows autorun. And perhaps even MacOS boot.
- install from the CD (for Windows)
- Support saving


- Needed software:
  - boot loader
    syslinux: ftp://ftp.kernel.org/pub/linux/utils/boot/syslinux/
  - init (simpleinit?)
  - libc (including libpthread) (uClibc)?
  - libSDL
  - libSDL_image
  - libpng (needed for libSDL_image)
  - libvorbisfile
  - libvorbis (for libvorbisfile)
  - libogg (for libvorbis)
  - libmikmod
  - libm (for libvorbis)
  - libz (for zipped content)
  - syslogd+klogd?

  Some audio library:
  - libasound (prefered)

  Some graphics output: one of
  - x11 (larger than necessary)
  - nanox
  - fbcon (may be the best solution)
  - directfb
  - svgalib (directly accesses the VGA card. No acceleration support)
    (may be the most portable)
  Having hardware acceleration support may be useful.

  For basic debugging:
  - sulogin
  - sash or busybox (minimal features)

  For hardware detection:
  - udev
  - ...

- Other needed files:
  - boot scripts
  - /etc/ld.so.conf
  - ...

- Sources
  Sources must be provided in some way (check the licenses of the
  dependencies).

- Warranty disclaimer on boot


For saving:
- USB memory stick and other memory devices
- Windows hard drive (where to put the files?)
- Linux hard drive (where to put the files?)
- Floppies? Probably not worth it.



Tools for testing before burning:
- vmware
- QEMU (http://fabrice.bellard.free.fr/qemu/)