blob: 9eb61b0b52ebd0521eda09019a01e4b1717eed71 (
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
81
82
83
84
85
86
87
88
89
90
91
92
|
include Makefile.config
DIRS = tools kernel mdk-stage1 perl-install rescue
.PHONY: dirs install isolinux-graphic.bmp.parameters isolinux-graphic-simple.bmp.parameters
install: dirs images rescue install_only
dirs:
@for n in $(DIRS); do $(MAKE) -C $$n all || exit 1 ; done
images:
./make_boot_img
tar: clean
rpm -qa > needed_rpms.lst
cd .. ; tar cfj gi.tar.bz2 gi
+ more important. + add some sample output for easy debugging + + * rescue/partimage_whole_disk: {mntpoint} is not set, so take the last + ext3 partition as being /home + - don't save /home and want a size <1GB (since it will be grown to fit + disk) + - fix keeping the small size of the existing windows partition + (otherwise the filesystem is small in a (much) bigger partition) + - remove "windows" entry from lilo.conf if windows not there + 2005/06/28 Pixel <pixel at mandrakesoft.com> * standalone/drakboot: handle no bootloader configuration found with a
|