0158d8b739ff4689a70edcfee1fedbb33842d1a2
[grml-autoconfig.git] / debian / changelog
1 grml-autoconfig (0.8.31) unstable; urgency=low
2
3   [ Ulrich Dangel ]
4   * Introduced autconfig.local for local modifications
5     [Closes: issue326]
6   * Added ARCH as predefinded variable to autoconfig.functions
7   * Extended netconfig/netscript to expand variables in url.
8     Example: netscript=server/script-$ARCH.sh
9   * Added unittest for finddcsdir
10
11   [ Michael Prokop ]
12   * Don't use /usr/X11R6/bin/X anymore, since Debian/squeeze doesn't
13     provide it any longer. Thanks for the patch to Julian Langschaedel.
14
15  -- Michael Prokop <mika@grml.org>  Mon, 21 Sep 2009 18:57:16 +0200
16
17 grml-autoconfig (0.8.30) unstable; urgency=low
18
19   [ Ulrich Dangel ]
20   * added new bootparameter netscript: introduced new bootoption
21     for downloading and running a executable from a remote host
22     [Closes: issue734]
23
24  -- Michael Prokop <mika@grml.org>  Mon, 21 Sep 2009 18:35:18 +0200
25
26 grml-autoconfig (0.8.29) unstable; urgency=low
27
28   [ Ulrich Dangel ]
29   * modify wget parameter to only try once to download given config.
30     [Closes: issue732]
31
32  -- Michael Prokop <mika@grml.org>  Thu, 10 Sep 2009 15:43:10 +0200
33
34 grml-autoconfig (0.8.28) unstable; urgency=low
35
36   [ Michael Prokop ]
37   * DCSDIR default value is /live/image. If no GRMLCONFIG device
38     is found and no myconfig option is given, DCSDIR is empty. It should
39     be /live/image. Thanks to Ulrich Dangel for the bugreport, thanks
40     to Marc Haber for the fix. [Closes: issue730]
41
42   [ Ulrich Dangel]
43   * Add unit tests for {get,check}bootparam.
44   * Fix a bug in getbootparam() (requesting unavailable argument
45     returned wrong bootoption instead of empty value).
46
47   [ Frank Terbeck ]
48   * doc/Makefile: fix non posix shell syntax.
49   * Integrate Ulrich's unit tests into the Debian package.
50
51  -- Michael Prokop <mika@grml.org>  Thu, 10 Sep 2009 01:01:04 +0200
52
53 grml-autoconfig (0.8.27) unstable; urgency=low
54
55   * Fix typo in grml-autoconfig(1).
56   * Fix bootoption check for startx in combination with nostartx.
57     Thanks to Julian Langschädel for report and bugfix!
58
59  -- Michael Prokop <mika@grml.org>  Tue, 08 Sep 2009 03:16:21 +0200
60
61 grml-autoconfig (0.8.26) unstable; urgency=low
62
63   * Fix syntax error in checkbootparam().
64
65  -- Michael Prokop <mika@grml.org>  Mon, 17 Aug 2009 09:52:59 +0200
66
67 grml-autoconfig (0.8.25) unstable; urgency=low
68
69   * config_finddcsdir(): Use the correct device for GRMLCFG.
70     Bugreport and path by Julian Langschädel, thanks!
71   * Patches by Marc Haber (thanks!):
72     - Streamline calls of bootparams-functions, single quotes everywhere.
73     - Don't print the "Debs, config, scripts will be read from the live
74       image directly." message if no debs, config or scripts option
75       was given on the command line.
76     - Drop $CMDLINE from grml-autoconfig; it's initialized from within
77       autoconfig.functions.
78     - Moved documentation from grml-saveconfig (now AKA grml-autoconfig.txt)
79       and adjusted for new DSC feature.
80   * Set $CMDLINE in $BOOTDEBUG part only if it's not available yet.
81   * Code cleanup:
82     - drop stringinstring(), stringinfile() and checkgrmlusb()
83     - rework getbootparam(), checkvalue() and checkbootparam() - now
84       we handle bootoptions in /proc/cmdline correctly as whole words
85       and support matching begin and end of line as well.
86   * Build-Depends-Indep on asciidoc, docbook-xsl and xsltproc.
87   * Bump Standard Version to 3.8.3.
88   * Merge scripts and documention from grml-saveconfig.
89   * Provide separate documentation for each script.
90
91  -- Michael Prokop <mika@grml.org>  Mon, 17 Aug 2009 03:19:28 +0200
92
93 grml-autoconfig (0.8.24) unstable; urgency=low
94
95   * Check for space after bootoption 'fast' so we do not conflict
96     with new kernel bootoption fastboot.
97   * New bootoption 'nostartx': if using startx as default bootoption
98     the bootoption 'nostartx' disables automatic startup of X.
99   * Apply patch by Marc Haber regarding re-work of debs, config
100     and scripts handling (thanks a lot!):
101     - debs, config and scripts are always searched and read from the
102       same place ($dcs-dir). Which place this is varies, depending on
103       GRMLCFG, noautoconfig and myconfig.
104     - debs are searched in $dcs-dir/debs. If debs=foo is given, foo is
105       taken as a shell wildcard for the debs being installed, paths are
106       allowed and relative to $dcs-dir.
107     - config archives (config.tbz) are searched directly in $dcs-dir. If
108       config=foo is given and foo is a file, that file is unpacked and its
109       content taken as configuration archive. If config=foo is given and foo
110       is a directory, the contents of the directory tree is copied over the
111       live CD configuration. paths are allowed and relative to $dcs-dir
112     - scripts are searched in $dcs-dir/scripts. If scripts=foo is given
113       and foo is a file, that file is executed. If scripts=foo is given and
114       foo is a directory, all files inside that directory are executed.
115       Paths are allowed and relative to $dcs-dir.
116     - If no GRMLCFG partition is found and noautoconfig is _not_ given
117       on the command line, nothing is changed and the dcs files are
118       searched within the .iso, $dcs-dir is set to the root directory
119       within the .iso
120     - If a GRMLCFG partition is found, $dcs-dir is set to the root of
121       the GRMLCFG partition unless noautoconfig is set. If noautoconfig is
122       set, $dcs-dir is set to the root directory within the .iso.
123     - If myconfig=foo is set on the command line, $dcs-dir is set to
124       foo, even if a GRMLCFG partition is present.
125     [Testing: issue715]
126   * Drop config_cdrom_scripts(): the bootoption "script" is triggered
127     by bootoption "scripts" and was never officially documented.
128   * Switch wording from 'CD' to 'live mode' where possible.
129   * Bump Build-Depends to debhelper >=5.
130   * Bump Standard-Version to 3.8.2 (no further changes).
131   * Use invoke-rc.d for starting network instead of invoking the
132     init script directly.
133   * Add LSB header to init script grml-autoconfig.strace.
134   * Add placeholder functions for start/restart/reload/stop to
135     grml-autoconfig.strace.
136   * Adjust copyright file (add reference to GPL-2, adjust year).
137
138  -- Michael Prokop <mika@grml.org>  Wed, 05 Aug 2009 15:44:41 +0200
139
140 grml-autoconfig (0.8.23) unstable; urgency=low
141
142   * Use /etc/modprobe.d/grml.conf as blacklist file (thanks to
143     Christian Hofstaedtler for the report!).
144   * Use 'config.tbz' as default filename if not overriden by
145     bootoption config.
146
147  -- Michael Prokop <mika@grml.org>  Fri, 29 May 2009 10:59:55 +0200
148
149 grml-autoconfig (0.8.22) unstable; urgency=low
150
151   * Fix bootoption "ssh": current versions of chpasswd don't support
152     option '-m' anymore (foo, this sucks!). [Testing: issue671]
153   * Improve ""Sorry, could not find file ..." message if there isn't
154     any config.tbz present. [Testing: issue670]
155
156  -- Michael Prokop <mika@grml.org>  Wed, 20 May 2009 18:12:44 +0200
157
158 grml-autoconfig (0.8.21) unstable; urgency=low
159
160   * Install haltlocal initscript in postinst script.
161   * Bump Standard Version to 3.8.1 and Compat Version to 5.
162
163  -- Michael Prokop <mika@grml.org>  Mon, 18 May 2009 09:17:23 +0200
164
165 grml-autoconfig (0.8.20) unstable; urgency=low
166
167   * Use "speakup_..." for speakup bootoption. Thanks to Michael Whapples!
168
169  -- Michael Prokop <mika@grml.org>  Wed, 08 Apr 2009 14:36:42 +0200
170
171 grml-autoconfig (0.8.19) unstable; urgency=low
172
173   * Add support for speakup.synth=... bootoption. [Testing: issue610]
174     [Closes: issue620]
175
176  -- Michael Prokop <mika@grml.org>  Mon, 06 Apr 2009 12:47:34 +0200
177
178 grml-autoconfig (0.8.18) unstable; urgency=low
179
180   * Drop support for /etc/grml/autoconfig.small. It causes
181     more headaches and work than benefit. Instead make sure
182     to properly support grml-small in the "grml-large"
183     configuration. [Testing: issue573]
184   * Change forensic bootoption handling: let's add 'forensic' to
185     the kernel append line as well now.
186   * Make sure to proberly support /live/image/bootparams/ again.
187
188  -- Michael Prokop <mika@grml.org>  Fri, 20 Feb 2009 18:54:33 +0100
189
190 grml-autoconfig (0.8.17) unstable; urgency=low
191
192   [ Michael Prokop ]
193   * Some updates in config_time(), *many* thanks to Thomas Lehmann:
194     - improve localtime / utc / gmt handling
195     - use UTC="--localtime" by default
196     - evaluate tz bootoption in this function as well
197     - execute hwclock even if /dev/rtc isn't available, just display
198       warning regarding the lack of /dev/rtc
199   [ Ulrich Dangel ]
200   * Refactored config unpacking config parameter will now be honored,
201     e.g. config=foo.tbz myconfig=/dev/sda1 is now possible.
202   * Get always the right boot parameter via /proc/cmdline.
203     [Testing: issue520]
204
205  -- Michael Prokop <mika@grml.org>  Thu, 12 Feb 2009 19:37:15 +0100
206
207 grml-autoconfig (0.8.16) unstable; urgency=low
208
209   * Support tohd=... bootoption.
210
211  -- Michael Prokop <mika@grml.org>  Sat, 15 Nov 2008 13:20:22 +0100
212
213 grml-autoconfig (0.8.15) unstable; urgency=low
214
215   * Use us instead of en-utf8 as default locale (this is what we
216     are using as bootparam by default as well).
217   * Support C/POSIX locales within language setup.
218   * Use POSIX locales on grml-small.
219   * Adjust VCS headers (we use git nowadays).
220
221  -- Michael Prokop <mika@grml.org>  Mon, 03 Nov 2008 01:29:36 +0100
222
223 grml-autoconfig (0.8.14) unstable; urgency=low
224
225   * Rework config_swspeak once more, move most parts of the logic
226     into an external script named 'swspeak' which will be shipped
227     with grml-scripts.
228
229  -- Michael Prokop <mika@grml.org>  Mon, 06 Oct 2008 00:05:51 +0200
230
231 grml-autoconfig (0.8.13) unstable; urgency=low
232
233   * Use random password if bootoption 'ssh' doesn't have an option.
234     Thanks to Michael Holzt and Marc Haber!
235   * Update swedish language settings, thanks again to Martin Karresand.
236   * Rework config_swspeak to support new speakup modules layout, needs
237     heavy testing though.
238   * Add config_hwspeak for supporting hardware speakup from userspace,
239     needs heavy testing as well.
240   * Use flite commands through a wrapper function.
241
242  -- Michael Prokop <mika@grml.org>  Sat, 27 Sep 2008 17:38:49 +0200
243
244 grml-autoconfig (0.8.12) unstable; urgency=low
245
246   * Add support for swedish language settings. Contributed
247     by Martin Karresand, thanks!
248
249  -- Michael Prokop <mika@grml.org>  Wed, 24 Sep 2008 15:11:49 +0200
250
251 grml-autoconfig (0.8.11) unstable; urgency=low
252
253   * Move noautoconfig hint from floppy part to top level.
254
255  -- Michael Prokop <mika@grml.org>  Wed, 27 Aug 2008 16:00:13 +0200
256
257 grml-autoconfig (0.8.10) unstable; urgency=low
258
259   * Update cpufrequency handling to reflect changes in current
260     kernel versions (like 2.6.26-grml). The cpufrequency modules
261     are available at $KERNEL/kernel/arch/x86/kernel/cpu/cpufreq
262     due to the x86/amd64 merge.
263     [Closes: issue505]
264
265  -- Michael Prokop <mika@grml.org>  Fri, 15 Aug 2008 23:06:26 +0200
266
267 grml-autoconfig (0.8.9) unstable; urgency=low
268
269   * Check for /dev/input/mice before starting GPM.
270   * Some small cleanups to make lintian happy.
271
272  -- Michael Prokop <mika@grml.org>  Thu, 17 Jul 2008 21:04:53 +0200
273
274 grml-autoconfig (0.8.8) unstable; urgency=low
275
276   * Mention job handling stuff when using debug=noscreen.
277
278  -- Michael Prokop <mika@grml.org>  Mon, 09 Jun 2008 17:11:58 +0200
279
280 grml-autoconfig (0.8.7) unstable; urgency=low
281
282   * config_mypath(): fix mkdir usage and write directories just once
283     to /etc/grml/my_path.
284
285  -- Michael Prokop <mika@grml.org>  Tue, 20 May 2008 01:01:37 +0200
286
287 grml-autoconfig (0.8.6) unstable; urgency=low
288
289   * config_syslog(): support other syslog daemons than syslog-ng as well.
290   * config_mypath(): create directory if it does not exist yet.
291
292  -- Michael Prokop <mika@grml.org>  Sat, 17 May 2008 22:06:05 +0200
293
294 grml-autoconfig (0.8.5) unstable; urgency=low
295
296   * config_mypath(): allow setting additional $PATH via bootoption
297     mypath, usage example: "mypath=/forensic"
298
299  -- Michael Prokop <mika@grml.org>  Sat, 22 Mar 2008 00:42:34 +0100
300
301 grml-autoconfig (0.8.4) unstable; urgency=low
302
303   * Make sure we support old directory layout (/cdrom) as
304     well as the new one (/live/image) for specific bootoptions.
305     Thanks to Jon for reporting the bug. [Testing: issue414]
306
307  -- Michael Prokop <mika@grml.org>  Mon, 18 Feb 2008 13:31:11 +0100
308
309 grml-autoconfig (0.8.3) unstable; urgency=low
310
311   * config_log(): log as well if bootoption debug is present
312   * config_debug(): support bootoption debug=noscreen to be able to
313     run a non-screen session
314
315  -- Michael Prokop <mika@grml.org>  Sun, 20 Jan 2008 19:52:14 +0100
316
317 grml-autoconfig (0.8.2) unstable; urgency=low
318
319   * grml-autoconfig scripts: if an "auto" configured device can be found in
320     /etc/network/interfaces (except for the loopback device) then suggest
321     setting CONFIG_DHCP=no by default. Thanks for feedback, Bernd Haug!
322     [Closes: issue324]
323
324  -- Michael Prokop <mika@grml.org>  Sat, 19 Jan 2008 23:03:18 +0100
325
326 grml-autoconfig (0.8.1) unstable; urgency=low
327
328   * Support multiple modules in bootoption blacklist.
329     [Closes: issue321]
330
331  -- Michael Prokop <mika@grml.org>  Mon, 14 Jan 2008 21:34:35 +0100
332
333 grml-autoconfig (0.8.0) unstable; urgency=low
334
335   * Support /etc/X11/xorg.conf.virtualbox in config_vmware()
336   * Bump Standard-Version to 3.7.3 (no further changes).
337
338  -- Michael Prokop <mika@grml.org>  Thu, 27 Dec 2007 23:58:48 +0100
339
340 grml-autoconfig (0.7.32) unstable; urgency=low
341
342   * Fix typo in manpage. Thanks to eModul for reporting!
343     [Closes: issue355]
344
345  -- Michael Prokop <mika@grml.org>  Fri, 07 Dec 2007 00:16:00 +0100
346
347 grml-autoconfig (0.7.31) unstable; urgency=low
348
349   * Drop unused update_progress() and no longer read in
350     /etc/sysconfig/grml.
351
352  -- Michael Prokop <mika@grml.org>  Tue, 20 Nov 2007 21:42:56 +0100
353
354 grml-autoconfig (0.7.30) unstable; urgency=low
355
356   * Make sure to switch to the original tty when running
357     consolechars. There seems to be a strange race condition
358     inside consolechars.
359
360  -- Michael Prokop <mika@grml.org>  Fri, 16 Nov 2007 08:46:02 +0100
361
362 grml-autoconfig (0.7.29) unstable; urgency=low
363
364   * New bootoption micvol (usage: micvol=$number) for setting mixer/
365     volume settings of microphone channel. Thanks to Ernst Ahlers
366     for the bugreport ("Rückkopplungspfeifen") and bringing up
367     the idea of setting it to '0' by default.
368
369  -- Michael Prokop <mika@grml.org>  Thu, 15 Nov 2007 22:02:03 +0100
370
371 grml-autoconfig (0.7.28) unstable; urgency=low
372
373   * Drop the 'consolechars --tty=/dev/tty${vc} -d' stuff from
374     config_language, otherwise we will find ourself at tty5 under
375     certain circumstances.
376   * Add bootoption noconsolefont to skip setting console font via
377     consolechars.
378
379  -- Michael Prokop <mika@grml.org>  Thu, 15 Nov 2007 11:46:15 +0100
380
381 grml-autoconfig (0.7.27) unstable; urgency=low
382
383   * Ignore /dev/.static/dev for /etc/mtab in live-mode.
384
385  -- Michael Prokop <mika@grml.org>  Sat, 03 Nov 2007 17:22:19 +0100
386
387 grml-autoconfig (0.7.26) unstable; urgency=low
388
389   * Replace check for /var/run/acpid.socket with grepping
390     for a running acpid process because the socket file isn't
391     present reliable.
392
393  -- Michael Prokop <mika@grml.org>  Sat, 27 Oct 2007 19:04:05 +0200
394
395 grml-autoconfig (0.7.25) unstable; urgency=low
396
397   * Move syslog startup to the begin of grml-autoconfig so we make
398     sure for example acpid is more quiet. [Testing: issue307]
399
400  -- Michael Prokop <mika@grml.org>  Sat,  6 Oct 2007 19:34:05 +0200
401
402 grml-autoconfig (0.7.24) unstable; urgency=low
403
404   * Adjust look'n'feel of testcd and improve error handling as well.
405   * Drop the "Not runnning unicode_start: grml-small with reduced language
406     support detected." check as we want to get working UTF8 setup on
407     grml-small/grml-medium as well.
408
409  -- Michael Prokop <mika@grml.org>  Sun, 30 Sep 2007 14:13:45 +0200
410
411 grml-autoconfig (0.7.23) unstable; urgency=low
412
413   * Add acpi-support to Recommends and depend on console-tools.
414   * Drop the logger stuff for acpid as doesn't seem to help.
415
416  -- Michael Prokop <mika@grml.org>  Thu, 20 Sep 2007 17:24:13 +0200
417
418 grml-autoconfig (0.7.22) unstable; urgency=low
419
420   * Check for "none /sys sysfs" instead of sysfs only. This should
421     fix duplicate output inside /etc/mtab.
422   * Send output of acpid to $DEBUG and logger.
423
424  -- Michael Prokop <mika@grml.org>  Thu, 20 Sep 2007 16:05:50 +0200
425
426 grml-autoconfig (0.7.21) unstable; urgency=low
427
428   * And finally get rid of the /dev/shm/resolvconf workaround again.
429     We have to solve it in the chroot builder.
430
431  -- Michael Prokop <mika@grml.org>  Mon, 17 Sep 2007 22:11:48 +0200
432
433 grml-autoconfig (0.7.20) unstable; urgency=low
434
435   * Improve check for presence of /dev/shm/resolvconf.
436
437  -- Michael Prokop <mika@grml.org>  Mon, 17 Sep 2007 17:37:34 +0200
438
439 grml-autoconfig (0.7.19) unstable; urgency=low
440
441   * Make sure /dev/shm/resolvconf exists.
442
443  -- Michael Prokop <mika@grml.org>  Mon, 17 Sep 2007 16:39:24 +0200
444
445 grml-autoconfig (0.7.18) unstable; urgency=low
446
447   * config_lvm(): support Debian etch as well
448
449  -- Michael Prokop <mika@grml.org>  Mon, 17 Sep 2007 16:14:39 +0200
450
451 grml-autoconfig (0.7.17) unstable; urgency=low
452
453   * Update /etc/mtab if running in live-initramfs mode.
454
455  -- Michael Prokop <mika@grml.org>  Sat,  8 Sep 2007 13:07:54 +0200
456
457 grml-autoconfig (0.7.16) unstable; urgency=low
458
459   * Drop support for (deprecated) bootoption 'expert'.
460
461  -- Michael Prokop <mika@grml.org>  Fri,  7 Sep 2007 00:20:27 +0200
462
463 grml-autoconfig (0.7.15) unstable; urgency=low
464
465   * config_language(): check for existence of /etc/sysconfig/keyboard
466     [Closes: issue272]
467
468  -- Michael Prokop <mika@grml.org>  Wed,  5 Sep 2007 19:09:58 +0200
469
470 grml-autoconfig (0.7.14) unstable; urgency=low
471
472   * Update $INSTALLED check to fix syntax error.
473
474  -- Michael Prokop <mika@grml.org>  Tue,  4 Sep 2007 13:59:01 +0200
475
476 grml-autoconfig (0.7.13) unstable; urgency=low
477
478   * config_testcd: adjust for use with live-initramfs.
479   * Adjust $INSTALLED check for use with live-initramfs.
480
481  -- Michael Prokop <mika@grml.org>  Tue,  4 Sep 2007 12:37:28 +0200
482
483 grml-autoconfig (0.7.12) unstable; urgency=low
484
485   * config_timezone: added some more error handling and adjust return value.
486
487  -- Michael Prokop <mika@grml.org>  Thu, 02 Aug 2007 11:01:18 +0200
488
489 grml-autoconfig (0.7.11) unstable; urgency=low
490
491   * Rename bootoption splash into "textsplash" (and additionally
492     support "tsplash" as well) so users can use graphical splash
493     from Debian *or* textsplash of grml. Use tty14 instead of tty7
494     and switch there using chvt.
495   * Fix code regression of checkbootparam (use '||' instead of '-o')
496
497  -- Michael Prokop <mika@grml.org>  Wed, 25 Jul 2007 19:12:56 +0200
498
499 grml-autoconfig (0.7.10) unstable; urgency=low
500
501   * Add config_ipw3945() which works around broken ipw3945 driver,
502     important especially for hd installation.
503
504  -- Michael Prokop <mika@grml.org>  Wed, 25 Jul 2007 19:00:03 +0200
505
506 grml-autoconfig (0.7.9) unstable; urgency=low
507
508   * Support bootoption nogrmlacpi to disable acpi stuff inside
509     grml-autoconfig without having to boot using noacpi (which
510     triggers kernel code actions).
511   * Inform user how to skip the acpi stuff.
512
513  -- Michael Prokop <mika@grml.org>  Wed, 25 Jul 2007 15:20:14 +0200
514
515 grml-autoconfig (0.7.8) unstable; urgency=low
516
517   * Inform users about CONFIG_DHCP=no when running from harddisk.
518   * Do not automatically start sl-modem-daemon but instead inform
519     user about 'Start sl-modem-daemon'.
520
521  -- Michael Prokop <mika@grml.org>  Thu, 12 Jul 2007 15:33:57 +0200
522
523 grml-autoconfig (0.7.7) unstable; urgency=low
524
525   * config_mixer: check for /proc/asound/cards before trying to
526     execute mixer binaries
527   * fix typo: it's therefore and not therefor
528
529  -- Michael Prokop <mika@grml.org>  Wed, 11 Jul 2007 19:41:04 +0200
530
531 grml-autoconfig (0.7.6) unstable; urgency=low
532
533   * config_lvm(): check for 'No volume groups found' as lvdisplay does
534     not provide appropriate return code for us.
535   * config_cpu(): Virtual Box supports ACPI and laptop-detect returns
536     with '0', so check for it and skip it.
537   * config_mixer(): Add 'no soundcard?' to aumix error message
538
539  -- Michael Prokop <mika@grml.org>  Wed, 11 Jul 2007 19:25:25 +0200
540
541 grml-autoconfig (0.7.5) unstable; urgency=low
542
543   * Integrate /etc/init.d/loadcpufreq in config_cpu() [Closes: issue238]
544
545  -- Michael Prokop <mika@grml.org>  Wed, 04 Jul 2007 12:02:49 +0200
546
547 grml-autoconfig (0.7.4) unstable; urgency=low
548
549   * support LVM (logical volumes):
550     - bootoption 'lvm' activates them
551     - no special bootoption just runs 'lvdisplay' and if something
552       can be found the user gets a hint to execute 'Start lvm2' to
553       set it up
554     - bootoption 'nolvm' completely disables the lvm code/checks
555   * support dvorak keyboard layout in iso-mode as well (using
556     bootoption 'dvorak-iso'; bootoptions 'dvorak' and 'dvorak-utf8'
557     are supported as well of course)
558
559  -- Michael Prokop <mika@grml.org>  Sun, 01 Jul 2007 20:35:30 +0200
560
561 grml-autoconfig (0.7.3) unstable; urgency=low
562
563   * language-functions: support dvorak keyboard layout [Closes: issue227]
564
565  -- Michael Prokop <mika@grml.org>  Mon, 04 Jun 2007 22:34:00 +0200
566
567 grml-autoconfig (0.7.2) unstable; urgency=low
568
569   * language-functions: improve setup for japan, add support for 'jp'
570     but still support 'ja' of course.
571
572  -- Michael Prokop <mika@grml.org>  Mon, 28 May 2007 13:55:21 +0200
573
574 grml-autoconfig (0.7.1) unstable; urgency=low
575
576   * Bumbing version to 0.7, we have a new stable release!
577
578  -- Michael Prokop <mika@grml.org>  Sun, 13 May 2007 11:18:35 +0200
579
580 grml-autoconfig (0.6.42) unstable; urgency=low
581
582   * Add additional check for valid block device and if mounting
583     a partition was successfull for handling swap bootoption.
584     The bootoption 'swap' mounted all availble partitions
585     read-only, this should be fixed now.
586     Thanks for the bugreport, Matthias Diener!
587
588  -- Michael Prokop <mika@grml.org>  Sat, 12 May 2007 00:47:33 +0200
589
590 grml-autoconfig (0.6.41) unstable; urgency=low
591
592   * config_distri(): make sure /usr/share/grml/desktop.jpg is removed
593     if it's a symlink, otherwise the copy will fail.
594
595  -- Michael Prokop <mika@grml.org>  Sun, 22 Apr 2007 14:01:42 +0200
596
597 grml-autoconfig (0.6.40) unstable; urgency=low
598
599   * Allow BOOT_APPEND from grml-debootstrap via cmdline
600
601  -- Alexander Wirt <formorer@grml.org>  Sat, 21 Apr 2007 11:13:53 +0200
602
603 grml-autoconfig (0.6.39) unstable; urgency=low
604
605   * Fix small typo in config_debootstrap().
606
607  -- Michael Prokop <mika@grml.org>  Mon, 16 Apr 2007 23:13:40 +0200
608
609 grml-autoconfig (0.6.38) unstable; urgency=low
610
611   * Rename partition bootoption inside config_debootstrap() to
612     bootoption target.
613
614  -- Michael Prokop <mika@grml.org>  Mon, 16 Apr 2007 20:50:15 +0200
615
616 grml-autoconfig (0.6.37) unstable; urgency=low
617
618   * Support full automatic installation of Debian via grml-debootstrap
619     via config_debootstrap().
620
621  -- Michael Prokop <mika@grml.org>  Mon, 16 Apr 2007 19:27:13 +0200
622
623 grml-autoconfig (0.6.36) unstable; urgency=low
624
625   * Fix tty6-check, thanks for the code review - Matthias Lederhofer!
626
627  -- Michael Prokop <mika@grml.org>  Sun, 15 Apr 2007 13:24:45 +0200
628
629 grml-autoconfig (0.6.35) unstable; urgency=low
630
631   * Make sure tty6 is defined in /etc/inittab for xstartup, even
632     if it's grml-small.
633
634  -- Michael Prokop <mika@grml.org>  Sun, 15 Apr 2007 13:14:41 +0200
635
636 grml-autoconfig (0.6.34) unstable; urgency=low
637
638   * Code rewrite of config_fstab(), this should fix the '/home
639     is unmounted on hd-installation if fstype is not auto'.
640   * Bump Standard Version to 3.7.2 (no further changes).
641   * Add '#DEBHELPER#' to maintainer scripts. Make lintian happy.
642   * Move error output of unicode_start to $DEBUG.
643
644  -- Michael Prokop <mika@grml.org>  Sun, 15 Apr 2007 12:12:33 +0200
645
646 grml-autoconfig (0.6.33) unstable; urgency=low
647
648   * Do not execute unicode_start on grml-small in live-mode.
649     [Testing: issue193]
650
651  -- Michael Prokop <mika@grml.org>  Fri, 13 Apr 2007 12:49:56 +0200
652
653 grml-autoconfig (0.6.32) unstable; urgency=low
654
655   * Fix logical structure of config_vmware().
656
657  -- Michael Prokop <mika@grml.org>  Mon,  9 Apr 2007 13:40:40 +0200
658
659 grml-autoconfig (0.6.31) unstable; urgency=low
660
661   * language-functions: applied patch by Jan-Pieter Jacobs
662     which improves and extends locales for Belgian. Thanks!
663     We now have bed (dutch), bef (french) and beg (german)
664     (in iso and utf8 versions as usual) plus the normal
665     'be' stuff (with updated locales now) of course.
666
667  -- Michael Prokop <mika@grml.org>  Fri,  6 Apr 2007 23:34:04 +0200
668
669 grml-autoconfig (0.6.30) unstable; urgency=low
670
671   * config_vmware(): if vmware-detect fails (in grml64 currently
672     for example) additionally check for bootimage vmware.
673   * config_distri(): new code which supports setting wallpaper
674     via /cdrom/desktop/$DISTRI.jpg
675
676  -- Michael Prokop <mika@grml.org>  Wed,  4 Apr 2007 21:28:49 +0200
677
678 grml-autoconfig (0.6.29) unstable; urgency=low
679
680   * config_language(): rework the way unicode_start and consolechars
681     are used. This should fix a race condition with german umlauts
682     within for example GNU screen so the umlauts work on tty1 but
683     not on other consoles.
684
685  -- Michael Prokop <mika@grml.org>  Tue,  3 Apr 2007 17:03:02 +0200
686
687 grml-autoconfig (0.6.28) unstable; urgency=low
688
689   * config_console(): support setting of bps via bootoption
690     serial as requested by Marc 'Zugschlus' Haber, see
691     http://blog.zugschlus.de/archives/530-using-grml-to-prepare-LVM-surgery.html
692
693  -- Michael Prokop <mika@grml.org>  Thu, 29 Mar 2007 15:33:10 +0200
694
695 grml-autoconfig (0.6.27) unstable; urgency=low
696
697   * grml-autoconfig script: make sure CONFIG_FSTAB matches only
698     CONFIG_FSTAB and not CONFIG_FSTABUSER & CO. Thanks for the hint,
699     gebi!
700
701  -- Michael Prokop <mika@grml.org>  Thu, 29 Mar 2007 11:31:20 +0200
702
703 grml-autoconfig (0.6.26) unstable; urgency=low
704
705   * Reintroduce /usr/bin/cpufreq-detect.sh code, otherwise
706     cpu-screen and cpu frequency scaling won't work.
707     [Closes: issue178]
708     [Closes: issue179]
709
710  -- Michael Prokop <mika@grml.org>  Tue, 27 Mar 2007 10:47:38 +0200
711
712 grml-autoconfig (0.6.25) unstable; urgency=low
713
714   * Improve informational messages for VMware/Qemu.
715
716  -- Michael Prokop <mika@grml.org>  Sun, 25 Mar 2007 15:53:28 +0200
717
718 grml-autoconfig (0.6.24) unstable; urgency=low
719
720   * config_vmware(): fix small syntax error.
721   * config_cpu(): support x86 in cpufreq detection, use ondemand
722     governor now and drop powernowd (needs heavy testing though).
723
724  -- Michael Prokop <mika@grml.org>  Sun, 25 Mar 2007 13:25:15 +0200
725
726 grml-autoconfig (0.6.23) unstable; urgency=low
727
728   * Added config_qemu() which currently does nothing else than
729     copying /etc/X11/xorg.conf.example to /etc/X11/xorg.conf.
730
731  -- Michael Prokop <mika@grml.org>  Sun, 25 Mar 2007 12:45:41 +0200
732
733 grml-autoconfig (0.6.22) unstable; urgency=low
734
735   * config_time(): check for existing /dev/rtc, display only
736     first line of error message if running hwclock fails.
737
738  -- Michael Prokop <mika@grml.org>  Sun, 25 Mar 2007 12:32:45 +0200
739
740 grml-autoconfig (0.6.21) unstable; urgency=low
741
742   * Add locales to Recommends.
743
744  -- Michael Prokop <mika@grml.org>  Sun, 18 Mar 2007 00:30:24 +0100
745
746 grml-autoconfig (0.6.20) unstable; urgency=low
747
748   * Add rsync to depends.
749   * config_language(): make sure /etc/sysconfig exists
750   * config_local_net(): check for entry in /etc/network/interfaces
751     before using ifup, fall back to ifconfig otherwise
752   * Change Suggests: line into Recommends: and added mdadm.
753
754  -- Michael Prokop <mika@grml.org>  Sat, 17 Mar 2007 23:48:12 +0100
755
756 grml-autoconfig (0.6.19) unstable; urgency=low
757
758   * Add rungetty to depends.
759
760  -- Michael Prokop <mika@grml.org>  Sat, 17 Mar 2007 23:32:39 +0100
761
762 grml-autoconfig (0.6.18) unstable; urgency=low
763
764   * Add gawk to depends.
765
766  -- Michael Prokop <mika@grml.org>  Sat, 17 Mar 2007 23:29:33 +0100
767
768 grml-autoconfig (0.6.17) unstable; urgency=low
769
770   * Remove lsb-functions stuff from debian/postrm to avoid race-conditions
771     when removing the package.
772
773  -- Michael Prokop <mika@grml.org>  Sat, 17 Mar 2007 22:40:09 +0100
774
775 grml-autoconfig (0.6.16) unstable; urgency=low
776
777   * Execute config_homedir() only if home-bootoption is set.
778   * Run the mount command inside config_fstab only if "$NOSWAP"
779     is not set.
780
781  -- Michael Prokop <mika@grml.org>  Fri,  9 Mar 2007 15:08:25 +0100
782
783 grml-autoconfig (0.6.15) unstable; urgency=low
784
785   * Fix startx bootoption. (Thanks for reporting, wuehlmaus.)
786
787  -- Michael Prokop <mika@grml.org>  Mon, 19 Feb 2007 18:59:13 +0100
788
789 grml-autoconfig (0.6.14) unstable; urgency=low
790
791   * config_language(): activate unicode console if running
792     within utf8 environment via unicode_start [Closes: issue75]
793
794  -- Michael Prokop <mika@grml.org>  Sat, 17 Feb 2007 13:58:52 +0100
795
796 grml-autoconfig (0.6.13) unstable; urgency=low
797
798   * Make sure the 'running inside VMware' isn't printed when running
799     with a Xen-enabled kernel (which returns '0' for vmware-detect).
800
801  -- Michael Prokop <mika@grml.org>  Mon,  5 Feb 2007 12:37:37 +0100
802
803 grml-autoconfig (0.6.12) unstable; urgency=low
804
805   * Support detection of CPUs with support for virtualization (vmx/svm).
806     Check for Xen-support as well.
807
808  -- Michael Prokop <mika@grml.org>  Wed, 24 Jan 2007 10:34:35 +0100
809
810 grml-autoconfig (0.6.11) unstable; urgency=low
811
812   * config_x_startup(): make sure handling of /etc/inittab for
813     bootoption startx works on grml-small too, thanks for
814     debugging and patch, Steffen Joeris!
815   * autoconfig: change CONFIG_FSTAB_USER='1000' into
816     CONFIG_FSTAB_USER='grml', otherwise startx bootoption fails
817     due to use of sudo, thanks again - Steffen!
818     (Closes: issue79)
819
820  -- Michael Prokop <mika@grml.org>  Wed, 17 Jan 2007 17:31:57 +0100
821
822 grml-autoconfig (0.6.10) unstable; urgency=low
823
824   * Use Uni3-Terminus16 instead of Uni3-Terminus14 as default font.
825
826  -- Michael Prokop <mika@grml.org>  Mon, 18 Dec 2006 01:35:32 +0100
827
828 grml-autoconfig (0.6.9) unstable; urgency=low
829
830   * Use Uni3-Terminus14 as default font to get utf8 support by default.
831   * Update language functions for 'get utf8 by default'.
832
833  -- Michael Prokop <mika@grml.org>  Sat, 16 Dec 2006 18:24:11 +0100
834
835 grml-autoconfig (0.6-8) unstable; urgency=low
836
837   * config_time: make sure /etc/default/locale can be accessed
838     before reading it (relevant basically only for booting via PXE).
839
840  -- Michael Prokop <mika@grml.org>  Sun,  3 Dec 2006 22:56:58 +0100
841
842 grml-autoconfig (0.6-7) unstable; urgency=low
843
844   * config_time: use option --directisa for hwclock if running hwclock
845     fails (work around the 'select() to /dev/rtc to wait for clock
846     tick timed out' problem).
847
848  -- Michael Prokop <mika@grml.org>  Sun,  3 Dec 2006 18:07:08 +0100
849
850 grml-autoconfig (0.6-6) unstable; urgency=low
851
852   * Display "not using swap partition" only in live-cd mode.
853
854  -- Michael Prokop <mika@grml.org>  Sun,  3 Dec 2006 12:47:42 +0100
855
856 grml-autoconfig (0.6-5) unstable; urgency=low
857
858   * Adjust swraid bootoption information text, thanks formorer
859     for feedback.
860
861  -- Michael Prokop <mika@grml.org>  Sun,  3 Dec 2006 01:36:44 +0100
862
863 grml-autoconfig (0.6-4) unstable; urgency=low
864
865   * Do *not* autoassemble sw-raid arrays any more, instead:
866     - create /etc/mdadm/mdadm.conf by default, boot using
867       noswraid to disable it
868     - assemble md arrays only if bootoption swraid is used,
869       otherwise display usage information how to enable it
870     (Closes: issue35)
871
872  -- Michael Prokop <mika@grml.org>  Sat,  2 Dec 2006 16:41:18 +0100
873
874 grml-autoconfig (0.6-3) unstable; urgency=low
875
876   * Extend 'Ignoring swap partition'-message for new default
877     behaviour (do not use swap by default anymore).
878
879  -- Michael Prokop <mika@grml.org>  Mon, 27 Nov 2006 23:45:30 +0100
880
881 grml-autoconfig (0.6-2) unstable; urgency=low
882
883   * Use 'MDADM_MAILADDR__' for setting mailaddress in mdadm.conf.
884     (Closes: issue24)
885
886  -- Michael Prokop <mika@grml.org>  Mon, 27 Nov 2006 12:25:26 +0100
887
888 grml-autoconfig (0.6-1) unstable; urgency=low
889
890   * Bumb version to 0.6 for new release.
891
892  -- Michael Prokop <mika@grml.org>  Sun, 26 Nov 2006 19:10:31 +0100
893
894 grml-autoconfig (0.5-28) unstable; urgency=low
895
896   * config_userfstab: use new CONFIG_FSTAB_USER variable from
897     /etc/grml/autoconfig
898   * adjust configuration files for CONFIG_FSTAB_USER and
899     CONFIG_FSTAB_GROUP supported by grml-rebuildfstab (>= 0.3-16).
900
901  -- Michael Prokop <mika@grml.org>  Fri, 24 Nov 2006 21:24:40 +0100
902
903 grml-autoconfig (0.5-27) unstable; urgency=low
904
905   * Use LANGUAGE="en" instead of LANGUAGE="us" for lang=en*,
906     thanks for input - Dirk Deimeke!
907
908  -- Michael Prokop <mika@grml.org>  Tue, 21 Nov 2006 00:04:20 +0100
909
910 grml-autoconfig (0.5-26) unstable; urgency=low
911
912   * autoconfig.functions: make sure we can access /proc/cmdline
913     when just sourcing this file too
914
915  -- Michael Prokop <mika@grml.org>  Thu, 16 Nov 2006 21:33:35 +0100
916
917 grml-autoconfig (0.5-25) unstable; urgency=low
918
919   * grml-autoconfig script: deprecate CONFIG_KERNEL, CONFIG_LANGUAGE,
920     CONFIG_DMA and CONFIG_MIXER as they are not really relevant on hd
921     installations.
922   * Do not use swap by default anymore, thanks for feedback goes to
923     Wolfgang Karall!
924   * Set mailaddress when creating /etc/mdadm/mdadm.conf so mdadm's
925     initscripts do not report warnings anymore on hd-installations.
926
927  -- Michael Prokop <mika@grml.org>  Thu, 16 Nov 2006 20:23:45 +0100
928
929 grml-autoconfig (0.5-24) unstable; urgency=low
930
931   * Added support for Norsk environment, thanks to Arnt Karlsen!
932
933  -- Michael Prokop <mika@grml.org>  Tue, 14 Nov 2006 13:09:19 +0100
934
935 grml-autoconfig (0.5-23) unstable; urgency=low
936
937   * The "we need a cleanup" release.
938   * Move checkbootparam "config" into myconfig function and
939     deprecate config_config therefor. (Thanks for the hint,
940     Marc Haber!)
941   * Deprecate unsued functions config_checkfs, config_remount_root,
942     config_old_myconfig and config_config.
943   * Remove unused $CONFIG_SPLASH from configuration files.
944
945  -- Michael Prokop <mika@grml.org>  Fri, 10 Nov 2006 00:34:17 +0100
946
947 grml-autoconfig (0.5-22) unstable; urgency=low
948
949   * config_swraid: use mkconf for generation of mdadm.conf
950
951  -- Michael Prokop <mika@grml.org>  Tue,  7 Nov 2006 12:30:09 +0100
952
953 grml-autoconfig (0.5-21) unstable; urgency=low
954
955   * grml-bootsplash: replace the clear command with
956     "echo -ne '\033[H\033[25l'" to avoid flickering.
957     Thanks a lot, Michael Schierl!
958
959  -- Michael Prokop <mika@grml.org>  Mon,  6 Nov 2006 23:11:36 +0100
960
961 grml-autoconfig (0.5-20) unstable; urgency=low
962
963   * config_swraid: add usage info how to disable it, check for
964     bootoption raid=noautodetect as well.
965   * Added some more checks for bootoption 'forensic' for users
966     who don't know that forensic should be the image name and not
967     an additional bootoption.
968
969  -- Michael Prokop <mika@grml.org>  Thu,  2 Nov 2006 20:19:11 +0100
970
971 grml-autoconfig (0.5-19) unstable; urgency=low
972
973   * Added function config_swraid ($CONFIG_SWRAID) for detection
974     of software raid arrays, running only in live-cd mode.
975
976  -- Michael Prokop <mika@grml.org>  Wed,  1 Nov 2006 14:14:44 +0100
977
978 grml-autoconfig (0.5-18) unstable; urgency=low
979
980   * config_cpu: beautify "Detecting CPU" for SMP systems.
981
982  -- Michael Prokop <mika@grml.org>  Tue, 31 Oct 2006 15:36:18 +0100
983
984 grml-autoconfig (0.5-17) unstable; urgency=low
985
986   * config_mixer: beautify error output of aumix.
987
988  -- Michael Prokop <mika@grml.org>  Tue, 31 Oct 2006 12:38:52 +0100
989
990 grml-autoconfig (0.5-16) unstable; urgency=low
991
992   * Fix config_debs() and include it in config files, thanks for
993     notice - schula!
994
995  -- Michael Prokop <mika@grml.org>  Mon, 23 Oct 2006 00:33:54 +0200
996
997 grml-autoconfig (0.5-15) unstable; urgency=low
998
999   * config_language: duplicate the getbootparam keyboard code to make
1000     sure /etc/grml/language-functions does not overwrite our values...
1001
1002  -- Michael Prokop <mika@grml.org>  Thu, 12 Oct 2006 13:00:17 +0200
1003
1004 grml-autoconfig (0.5-14) unstable; urgency=low
1005
1006   * Check for existence of
1007     /usr/share/consolefonts/Lat15-Terminus16.psf.gz
1008
1009  -- Michael Prokop <mika@grml.org>  Sat,  7 Oct 2006 23:37:28 +0200
1010
1011 grml-autoconfig (0.5-13) unstable; urgency=low
1012
1013   * Don't export $COUNTRY and $CHARSET anymore.
1014
1015  -- Michael Prokop <mika@grml.org>  Wed,  4 Oct 2006 10:39:24 +0200
1016
1017 grml-autoconfig (0.5-12) unstable; urgency=low
1018
1019   * Change 'chown grml.grml ...' into 'chown grml: ...'. Thanks, Worf!
1020   * Remove /etc/sysconfig/.
1021
1022  -- Michael Prokop <mika@grml.org>  Thu, 28 Sep 2006 16:30:42 +0200
1023
1024 grml-autoconfig (0.5-11) unstable; urgency=low
1025
1026   * Use KEYTABLE="gr-utf8" for greek-utf8.
1027   * grml-autoconfig script: change keyboard into language.
1028
1029  -- Michael Prokop <mika@grml.org>  Mon, 25 Sep 2006 10:23:04 +0200
1030
1031 grml-autoconfig (0.5-10) unstable; urgency=low
1032
1033   * Rewrote language code:
1034     - support $LANG-utf8
1035     - use the script grml-setlang instead of output variable to
1036       /etc/environment and /etc/sysconfig/*
1037     - use CHARSET="iso8859-15" by default, support some new languages
1038     - config_environment, config_running_from and config_keyboard
1039       are deprecate now
1040   * Removed discover from Suggests and added alsa-utils instead.
1041   * Check for presence of aumix and amixer binaries in config_mixer.
1042   * Cleanup of "doubled logic checks" like
1043     "if ! [ -z ..." => "if [ -n ..."].
1044   * Check whether a swap partition is used already and inform user
1045     about it. Support LABELs as well.
1046
1047  -- Michael Prokop <mika@grml.org>  Sat, 23 Sep 2006 12:10:32 +0200
1048
1049 grml-autoconfig (0.5-9) unstable; urgency=low
1050
1051   * Use "amixer get Front" in config_mixer so the IBM notebooks
1052     have sound by default as well. Thanks Jimmy for debugging
1053     and code-base!
1054
1055  -- Michael Prokop <mika@grml.org>  Sun, 17 Sep 2006 16:29:28 +0200
1056
1057 grml-autoconfig (0.5-8) unstable; urgency=low
1058
1059   * Check for lo device in /etc/network/run/ifstate before
1060     running "ifup lo".
1061   * Clean /etc/network/status/ before writing into it.
1062   * Change { pump... } into ( pump... ).
1063
1064  -- Michael Prokop <mika@grml.org>  Sat, 16 Sep 2006 15:08:30 +0200
1065
1066 grml-autoconfig (0.5-7) unstable; urgency=low
1067
1068   * Move /etc/grml/lsb-functions to package grml-etc-core.
1069
1070  -- Michael Prokop <mika@grml.org>  Sat, 16 Sep 2006 11:03:43 +0200
1071
1072 grml-autoconfig (0.5-6) unstable; urgency=low
1073
1074   * Write status of pump into /etc/network/status/$DEVICE.
1075
1076  -- Michael Prokop <mika@grml.org>  Fri, 15 Sep 2006 18:44:35 +0200
1077
1078 grml-autoconfig (0.5-5) unstable; urgency=low
1079
1080   * Set CONFIG_CREATE_MNT_DIRS=no and warn when create_mnt_dirs()
1081     is executed as grml-rebuildfstab does all we need from now on.
1082
1083  -- Michael Prokop <mika@grml.org>  Mon, 11 Sep 2006 21:39:56 +0200
1084
1085 grml-autoconfig (0.5-4) unstable; urgency=low
1086
1087   * Deactivate creation of /mnt/*-directories as grml-rebuildfstab
1088     >= 0.3-1 takes care of it. Depend on grml-rebuildfstab package
1089     >= 0.3-1 therefore.
1090
1091  -- Michael Prokop <mika@grml.org>  Mon, 11 Sep 2006 15:51:22 +0200
1092
1093 grml-autoconfig (0.5-3) unstable; urgency=low
1094
1095   * Run chpasswd with '-m' option.
1096
1097  -- Michael Prokop <mika@grml.org>  Tue, 15 Aug 2006 12:35:54 +0200
1098
1099 grml-autoconfig (0.5-2) unstable; urgency=low
1100
1101   * Run 'ifup lo' only in live-cd mode...
1102
1103  -- Michael Prokop <mika@grml.org>  Sat, 12 Aug 2006 14:08:32 +0200
1104
1105 grml-autoconfig (0.5-1) unstable; urgency=low
1106
1107   * Bumb version, grml 0.8 is coming closer...
1108
1109  -- Michael Prokop <mika@grml.org>  Fri, 11 Aug 2006 11:48:44 +0200
1110
1111 grml-autoconfig (0.4-33) unstable; urgency=low
1112
1113   * Use ifup instead of ifconfig for bringing up lo in
1114     config_local_net().
1115
1116  -- Michael Prokop <mika@grml.org>  Thu, 10 Aug 2006 09:14:51 +0200
1117
1118 grml-autoconfig (0.4-32) unstable; urgency=low
1119
1120   * Drop unused config_splash().
1121
1122  -- Michael Prokop <mika@grml.org>  Fri,  4 Aug 2006 12:14:50 +0200
1123
1124 grml-autoconfig (0.4-31) unstable; urgency=low
1125
1126   * Use "timeout 4" when running dd on floppy drive. Thanks, Gebi!
1127
1128  -- Michael Prokop <mika@grml.org>  Fri,  4 Aug 2006 10:12:34 +0200
1129
1130 grml-autoconfig (0.4-30) unstable; urgency=low
1131
1132   * Check for running hal/d-bus and warn in acpid sequence then.
1133   * Improved apm-stuff in config_acpi_apm.
1134
1135  -- Michael Prokop <mika@grml.org>  Fri, 21 Jul 2006 13:06:52 +0200
1136
1137 grml-autoconfig (0.4-29) unstable; urgency=low
1138
1139   * Moved generic $LANGUAGE stuff into its own file named
1140     /etc/grml/language-functions so we can source the file
1141     in grml-autoconfig and grml-scripts without having to
1142     maintain it in several places.
1143   * Write $LANG-stuff in config_environment to /etc/default/locales
1144     if the file does not exist yet.
1145
1146  -- Michael Prokop <mika@grml.org>  Tue, 18 Jul 2006 19:59:47 +0200
1147
1148 grml-autoconfig (0.4-28) unstable; urgency=low
1149
1150   * Send errors to $DEBUG in checkgrmlsmall() and checkgrmlusb()
1151     as there are people out there using grml-autoconfig on plain
1152     Debian systems where /etc/grml_version does not exist. :)
1153
1154  -- Michael Prokop <mika@grml.org>  Tue, 18 Jul 2006 18:41:51 +0200
1155
1156 grml-autoconfig (0.4-27) unstable; urgency=low
1157
1158   * The "oh, I love GNU" Release.
1159   * Adjusted tail command to get rid of the "Warning: "+number" syntax is
1160     deprecated, please use "-n +number"".
1161   * Added $CONFIG_BLANKING to disable console blanking (on request
1162     by Marc 'Zugschlus' Haber).
1163   * Added header to be Init Script LSB-compliant, see
1164     http://wiki.debian.org/LSBInitScripts for details.
1165
1166  -- Michael Prokop <mika@grml.org>  Fri,  7 Jul 2006 21:58:57 +0200
1167
1168 grml-autoconfig (0.4-26) unstable; urgency=low
1169
1170   * Added support for /etc/init.d/boolocal.{pre,middle,post}.
1171   * Added manpage grml-bootsplash.1.
1172   * grml-bootsplash: switched to /bin/bash to make lintian happy,
1173     improved error handling as well.
1174
1175  -- Michael Prokop <mika@grml.org>  Sun,  4 Jun 2006 14:03:00 +0200
1176
1177 grml-autoconfig (0.4-25) unstable; urgency=low
1178
1179   * Added textbased bootsplash support based on contribution
1180     by Florian Keller <Florian.Keller@zuerich.ch>, thanks!
1181   * Run language stuff at the beginning so the fonts are
1182     switched earlier.
1183
1184  -- Michael Prokop <mika@grml.org>  Sat, 27 May 2006 11:23:15 +0200
1185
1186 grml-autoconfig (0.4-24) unstable; urgency=low
1187
1188   * Reorderd $KEYTABLE check in config_environment.
1189
1190  -- Michael Prokop <mika@grml.org>  Sun, 14 May 2006 21:30:47 +0200
1191
1192 grml-autoconfig (0.4-23) unstable; urgency=low
1193
1194   * Added '-m' option to consolechars call.
1195
1196  -- Michael Prokop <mika@grml.org>  Sun, 14 May 2006 17:13:40 +0200
1197
1198 grml-autoconfig (0.4-22) unstable; urgency=low
1199
1200   * Moved check for bootoption [x]keyboard=... to config_environment.
1201
1202  -- Michael Prokop <mika@grml.org>  Sun, 14 May 2006 16:59:34 +0200
1203
1204 grml-autoconfig (0.4-21) unstable; urgency=low
1205
1206   * Adjust KEYTABLE of bootoption keyboard=de/at via
1207     /etc/sysconfig/keyboard, otherwise we've a racecondition.
1208   * Reworked charset code to run it on all tty's.
1209
1210  -- Michael Prokop <mika@grml.org>  Sun, 14 May 2006 12:18:24 +0200
1211
1212 grml-autoconfig (0.4-20) unstable; urgency=low
1213
1214   * The 'oh, we are lintian-clean again even though #360534' Release.
1215
1216  -- Michael Prokop <mika@grml.org>  Fri, 12 May 2006 21:48:30 +0200
1217
1218 grml-autoconfig (0.4-19) unstable; urgency=low
1219
1220   * Take KEYTABLE="de-latin1-nodeadkeys" for bootoptions keyboard=de
1221     and keyboard=at.
1222
1223  -- Michael Prokop <mika@grml.org>  Fri, 12 May 2006 21:32:21 +0200
1224
1225 grml-autoconfig (0.4-18) unstable; urgency=low
1226
1227   * Added pump to depends. Thanks, Florian Keller!
1228
1229  -- Michael Prokop <mika@grml.org>  Fri,  5 May 2006 13:01:11 +0200
1230
1231 grml-autoconfig (0.4-17) unstable; urgency=low
1232
1233   * Support multiline settings in /cdrom/bootparams/*. Patch
1234     contributed by Florian Keller, thanks!
1235
1236  -- Michael Prokop <mika@grml.org>  Thu,  4 May 2006 22:48:43 +0200
1237
1238 grml-autoconfig (0.4-16) unstable; urgency=low
1239
1240   * Adjusted $XKEYBOARD and $KDEKEYBOARD as suggested by
1241     Florian Keller, thanks!
1242
1243  -- Michael Prokop <mika@grml.org>  Wed,  3 May 2006 09:37:44 +0200
1244
1245 grml-autoconfig (0.4-15) unstable; urgency=low
1246
1247   * Move $CMDLINE before the checkbootparam "nocolor" code.
1248     Switch order of display and sourcing lsb-functions.
1249   * Don't run bootlogd via initscript as startup might be
1250     prevented via /etc/default/bootlogd.
1251
1252  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 16:10:29 +0200
1253
1254 grml-autoconfig (0.4-14) unstable; urgency=low
1255
1256   * grml-autoconfig script reads in current state of options now.
1257
1258  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 14:55:57 +0200
1259
1260 grml-autoconfig (0.4-13) unstable; urgency=low
1261
1262   * Removed config_color as it is handled when sourcing lsb-functions.
1263
1264  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 13:01:54 +0200
1265
1266 grml-autoconfig (0.4-12) unstable; urgency=low
1267
1268   * Use consolechars instead of charset for $CHARMAP.
1269
1270  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 12:02:39 +0200
1271
1272 grml-autoconfig (0.4-11) unstable; urgency=low
1273
1274   * Fixed wrong logic of nocolor check.
1275
1276  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 11:49:46 +0200
1277
1278 grml-autoconfig (0.4-10) unstable; urgency=low
1279
1280   * Check for bootoption nocolor and source
1281     /etc/grml/lsb-functions with RC_NOCOLOR=yes then.
1282
1283  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 01:00:03 +0200
1284
1285 grml-autoconfig (0.4-9) unstable; urgency=low
1286
1287   * Fixed bootlogd problems, now we are starting it through the
1288     init script.
1289   * Fixed problem with loading charset because of using the
1290     wrong variable. Thanks to Maciej 'harnir' Delmanowski!
1291
1292  -- Michael Prokop <mika@grml.org>  Sun, 30 Apr 2006 00:01:49 +0200
1293
1294 grml-autoconfig (0.4-8) unstable; urgency=low
1295
1296   * reworked language section
1297     - improve indenting of case $LANGUAGE code...
1298     - use Lat15-Terminus16 as default console font if
1299       bootoption "nodefaultfont" isn't used, depend on
1300       package console-terminus therefore
1301     - use console font Lat2-Terminus16 instead of iso02g,
1302       reported by Maciej 'harnir' Delmanowski, thanks!
1303     - rename "Activating keyboard settings" to "Activating
1304       language settings"
1305     - add (deactivated) CONSOLEFONT to /etc/grml/autoconfig[.small]
1306   * removed time-stuff from grml-autoconfig interface
1307   * fixed name of keyboard code in grml-autoconfig interface
1308   * added support for iso02 charmaps in config_keyboard, thanks to
1309     Maciej 'harnir' Delmanowski!
1310
1311  -- Michael Prokop <mika@grml.org>  Fri, 28 Apr 2006 22:35:34 +0200
1312
1313 grml-autoconfig (0.4-7) unstable; urgency=low
1314
1315   * Run config_time and config_timezone only in live-mode.
1316
1317  -- Michael Prokop <mika@grml.org>  Sun, 23 Apr 2006 20:05:51 +0200
1318
1319 grml-autoconfig (0.4-6) unstable; urgency=low
1320
1321   * We must use $LANG for LC_ALL and LC_MESSAGES.
1322
1323  -- Michael Prokop <mika@grml.org>  Sat, 22 Apr 2006 00:06:54 +0200
1324
1325 grml-autoconfig (0.4-5) unstable; urgency=low
1326
1327   * config_environment: set LC_MESSAGES to $LANGUAGE
1328     and LC_ALL to $LANGUAGE in /etc/environment
1329
1330  -- Michael Prokop <mika@grml.org>  Fri, 21 Apr 2006 15:32:05 +0200
1331
1332 grml-autoconfig (0.4-4) unstable; urgency=low
1333
1334   * Use /bin/ls instead of ls to prevent alias errors when
1335     running interactive.
1336   * Check for mounted /mnt/grml before unmounting.
1337   * Always set returncode for variable $RC, avoid race conditions.
1338
1339  -- Michael Prokop <mika@grml.org>  Fri, 21 Apr 2006 00:39:18 +0200
1340
1341 grml-autoconfig (0.4-3) unstable; urgency=low
1342
1343   * Reworked config_fwtimeout for low default firmware timeout
1344     of kernel.
1345
1346  -- Michael Prokop <mika@grml.org>  Sun,  9 Apr 2006 12:28:39 +0200
1347
1348 grml-autoconfig (0.4-2) unstable; urgency=low
1349
1350   * Don't run code from config_environment on hd-installation.
1351
1352  -- Michael Prokop <mika@grml.org>  Sat,  8 Apr 2006 14:06:07 +0200
1353
1354 grml-autoconfig (0.4-1) unstable; urgency=low
1355
1356   *  New grml version.
1357
1358  -- Michael Prokop <mika@grml.org>  Thu,  6 Apr 2006 16:18:43 +0200
1359
1360 grml-autoconfig (0.3-14) unstable; urgency=low
1361
1362   * config_fstab: don't try to create empty dirs in /mnt/.
1363
1364  -- Michael Prokop <mika@grml.org>  Wed,  5 Apr 2006 23:56:50 +0200
1365
1366 grml-autoconfig (0.3-13) unstable; urgency=low
1367
1368   * Removed discover from grml-autoconfig interface. Nobody
1369     needs that nowadays anymore...
1370   * Activate config_fstab by default again in grml-autoconfig
1371     interface.
1372   * Reordered execution of $UID check and mktemp in grml-autoconfig
1373     interface.
1374
1375  -- Michael Prokop <mika@grml.org>  Mon,  3 Apr 2006 00:36:58 +0200
1376
1377 grml-autoconfig (0.3-12) unstable; urgency=low
1378
1379   * Updated manpage.
1380
1381  -- Michael Prokop <mika@grml.org>  Thu, 30 Mar 2006 00:25:14 +0200
1382
1383 grml-autoconfig (0.3-11) unstable; urgency=low
1384
1385   * Reworked config_cpu(). Don't let the kernel decide what
1386     cpufrequency modules we want but do it on our own using
1387     the new cpufreq-detect.sh from grml-scripts.
1388
1389  -- Michael Prokop <mika@grml.org>  Fri, 24 Mar 2006 11:25:38 +0100
1390
1391 grml-autoconfig (0.3-10) unstable; urgency=low
1392
1393   * Improved config_swspeak (added sound output).
1394
1395  -- Michael Prokop <mika@grml.org>  Thu, 23 Mar 2006 12:04:46 +0100
1396
1397 grml-autoconfig (0.3-9) unstable; urgency=low
1398
1399   * Don't run rebuildfstab by default on hd-install's anymore via
1400     grml-autoconfig script.
1401   * Renamed CONFIG_FSTABUSER to CONFIG_USERFSTAB so adjusting
1402     values via grml-autoconfig does not conflict with CONFIG_FSTAB.
1403
1404  -- Michael Prokop <mika@grml.org>  Sat, 25 Feb 2006 20:02:58 +0100
1405
1406 grml-autoconfig (0.3-8) unstable; urgency=low
1407
1408   * Added detection of software-suspend swap partitions to
1409     config_fstab. Support use of ANYSWAP as well.
1410
1411  -- Michael Prokop <mika@grml.org>  Sun, 19 Feb 2006 14:42:49 +0100
1412
1413 grml-autoconfig (0.3-7) unstable; urgency=low
1414
1415   * Print $CMDLINE when in debug mode.
1416
1417  -- Michael Prokop <mika@grml.org>  Thu, 16 Feb 2006 22:26:24 +0100
1418
1419 grml-autoconfig (0.3-6) unstable; urgency=low
1420
1421   * Deactivated the 'not running under zsh' warning.
1422
1423  -- Michael Prokop <mika@grml.org>  Fri, 10 Feb 2006 23:42:28 +0100
1424
1425 grml-autoconfig (0.3-5) unstable; urgency=low
1426
1427   * Added an additional check for label on floppy disks via blkid
1428     if running dd was successful to config_automount. Hopefully this
1429     fixes the annoying 'GRMLCFG does not work with floppy disk'
1430     problem. Needs some testing on real, problematic hardware though.
1431
1432  -- Michael Prokop <mika@grml.org>  Tue, 31 Jan 2006 01:05:15 +0100
1433
1434 grml-autoconfig (0.3-4) unstable; urgency=low
1435
1436   * Switched some einfo messages to ewarn
1437     ("Skipping .. as requested" stuff).
1438
1439  -- Michael Prokop <mika@grml.org>  Sun, 22 Jan 2006 15:11:12 +0100
1440
1441 grml-autoconfig (0.3-3) unstable; urgency=low
1442
1443   * Adjusted $MEM variables in config_small to better react on low
1444     memory systems.
1445   * Bumbed required udev version in depends to version 0.080-1.
1446
1447  -- Michael Prokop <mika@grml.org>  Sat, 21 Jan 2006 23:19:11 +0100
1448
1449 grml-autoconfig (0.3-2) unstable; urgency=low
1450
1451   * Moved discover from depends to suggests. Added check for /sbin/discover
1452     to config_discover.
1453
1454  -- Michael Prokop <mika@grml.org>  Sat, 21 Jan 2006 20:12:01 +0100
1455
1456 grml-autoconfig (0.3-1) unstable; urgency=low
1457
1458   * The 'hey, get your winterschlapfn' release.
1459
1460  -- Michael Prokop <mika@grml.org>  Sat, 21 Jan 2006 13:43:30 +0100
1461
1462 grml-autoconfig (0.2-49) unstable; urgency=low
1463
1464   * Oh, I forgot to print the 'no $IP'-code in config_distcc
1465     only if bootparam distcc is set. Nothing serious, fixed anyway.
1466
1467  -- Michael Prokop <mika@grml.org>  Fri, 20 Jan 2006 21:50:09 +0100
1468
1469 grml-autoconfig (0.2-48) unstable; urgency=low
1470
1471   * Improved info messages in config_distcc. Don't try to start
1472     distcc if no valid ip address or interface is available.
1473
1474  -- Michael Prokop <mika@grml.org>  Fri, 20 Jan 2006 20:43:53 +0100
1475
1476 grml-autoconfig (0.2-47) unstable; urgency=low
1477
1478   * Fixed volume handling in config_mixer (empty default variable).
1479   * Wait until $IP is set in config_distcc or continue after 10 tries.
1480
1481  -- Michael Prokop <mika@grml.org>  Fri, 20 Jan 2006 14:09:32 +0100
1482
1483 grml-autoconfig (0.2-46) unstable; urgency=low
1484
1485   * Switched order of execution of config_kernel and config_vmware.
1486   * Added bootoption novmware to skip execution of vmware specific
1487     stuff.
1488
1489  -- Michael Prokop <mika@grml.org>  Mon, 16 Jan 2006 22:02:57 +0100
1490
1491 grml-autoconfig (0.2-45) unstable; urgency=low
1492
1493   * Fixed racecondition with unquoted $VARIABLES (thanks, Gebi!).
1494
1495  -- Michael Prokop <mika@grml.org>  Sun, 15 Jan 2006 22:39:16 +0100
1496
1497 grml-autoconfig (0.2-44) unstable; urgency=low
1498
1499   * Improved output of config_modem.
1500
1501  -- Michael Prokop <mika@grml.org>  Sat, 14 Jan 2006 23:28:52 +0100
1502
1503 grml-autoconfig (0.2-43) unstable; urgency=low
1504
1505   * speechd-up does not start through grml-autoconfig, so start
1506     it manually after booting. Changed an einfo to eend as well.
1507
1508  -- Michael Prokop <mika@grml.org>  Sat, 14 Jan 2006 22:51:07 +0100
1509
1510 grml-autoconfig (0.2-42) unstable; urgency=low
1511
1512   * Run speechd-up in daemon mode.
1513   * Disable config_pcmcia by default now (cardmgr is obsolete
1514     with current kernel and udev).
1515   * Removed pcmcia and firewirefix from grml-autoconfig interface.
1516
1517  -- Michael Prokop <mika@grml.org>  Sat, 14 Jan 2006 18:34:50 +0100
1518
1519 grml-autoconfig (0.2-41) unstable; urgency=low
1520
1521   * Added - experimental - config_swspeak / CONFIG_SWSPEAK
1522     (run software synthesizer via speakup).
1523
1524  -- Michael Prokop <mika@grml.org>  Sat, 14 Jan 2006 14:47:48 +0100
1525
1526 grml-autoconfig (0.2-40) unstable; urgency=low
1527
1528   * Removed config_keyboard_cmdline and moved code from there to
1529     config_language to avoid racecondition. Now using bootoptions
1530     lang, keyboard and xkeyboard should work at the same time.
1531
1532  -- Michael Prokop <mika@grml.org>  Thu, 12 Jan 2006 21:23:54 +0100
1533
1534 grml-autoconfig (0.2-39) unstable; urgency=low
1535
1536   * Updated config_pcmcia so it works with new pcmciautils package,
1537     where cardmgr isn't present anymore. Needs some tests, though.
1538   * Install autoconfig.functions with permissions 755 so it can
1539     be executed.
1540
1541  -- Michael Prokop <mika@grml.org>  Thu, 12 Jan 2006 18:09:06 +0100
1542
1543 grml-autoconfig (0.2-38) unstable; urgency=low
1544
1545   * Updated config_ipv6.
1546
1547  -- Michael Prokop <mika@grml.org>  Mon,  9 Jan 2006 22:19:21 +0100
1548
1549 grml-autoconfig (0.2-37) unstable; urgency=low
1550
1551   * Added ipv6 bootoption (thanks, Stephan Peijnik!). Needs
1552     some testing though.
1553
1554  -- Michael Prokop <mika@grml.org>  Sun,  8 Jan 2006 22:57:22 +0100
1555
1556 grml-autoconfig (0.2-36) unstable; urgency=low
1557
1558   * Improved config_cpu:
1559     - removed UUOL
1560     - check for cpudyn-support (thanks, Stephan Peijnik!)
1561   * Warn if running not under zsh.
1562   * Switched 'eend 0 || eend 1' statements to 'eend $?'.
1563
1564  -- Michael Prokop <mika@grml.org>  Sun,  8 Jan 2006 16:54:22 +0100
1565
1566 grml-autoconfig (0.2-35) unstable; urgency=low
1567
1568   * Oh, wrong logic for $VOL in config_mixer. Fixed.
1569
1570  -- Michael Prokop <mika@grml.org>  Sun,  8 Jan 2006 00:29:14 +0100
1571
1572 grml-autoconfig (0.2-34) unstable; urgency=low
1573
1574   * Modified $NOSWAP logic in config_fstab for infotext.
1575   * Add bootoption nofirewiredev in config_firewire_dev.
1576   * Set CONFIG_FIREWIRE_DEV to no by default.
1577
1578  -- Michael Prokop <mika@grml.org>  Sun,  8 Jan 2006 00:08:57 +0100
1579
1580 grml-autoconfig (0.2-33) unstable; urgency=low
1581
1582   * Check for return codes in interface (thanks for hint, Gebi).
1583
1584  -- Michael Prokop <mika@grml.org>  Sat,  7 Jan 2006 14:19:44 +0100
1585
1586 grml-autoconfig (0.2-32) unstable; urgency=low
1587
1588   * Don't try to create stuff like /proc/bus/usb in config_fstab.
1589
1590  -- Michael Prokop <mika@grml.org>  Sat,  7 Jan 2006 12:26:53 +0100
1591
1592 grml-autoconfig (0.2-31) unstable; urgency=low
1593
1594   * Use wm-ng (fluxbox with addons) as default window manager for
1595     bootoption startx.
1596
1597  -- Michael Prokop <mika@grml.org>  Sat,  7 Jan 2006 11:53:14 +0100
1598
1599 grml-autoconfig (0.2-30) unstable; urgency=low
1600
1601   * Added bootoption vol for setting volumes via aumix to config_mixer.
1602
1603  -- Michael Prokop <mika@grml.org>  Thu,  5 Jan 2006 19:45:54 +0100
1604
1605 grml-autoconfig (0.2-29) unstable; urgency=low
1606
1607   * Add function iszsh to autoconfig.functions and use setopt only
1608     if running with zsh.
1609
1610  -- Michael Prokop <mika@grml.org>  Thu,  5 Jan 2006 17:37:20 +0100
1611
1612 grml-autoconfig (0.2-28) unstable; urgency=low
1613
1614   * Call rmnologin with start-option (thx4hint, Marc!).
1615   * Don't output the 'overall' text in RAM-info.
1616
1617  -- Michael Prokop <mika@grml.org>  Wed,  4 Jan 2006 14:29:18 +0100
1618
1619 grml-autoconfig (0.2-27) unstable; urgency=low
1620
1621   * Improved output of RAM-info.
1622
1623  -- Michael Prokop <mika@grml.org>  Tue,  3 Jan 2006 23:10:54 +0100
1624
1625 grml-autoconfig (0.2-26) unstable; urgency=low
1626
1627   * Don't use discover by default anymore (udev does that now).
1628   * Rewrote config_blacklist:
1629     - run it only on live-cd
1630     - use /etc/modprobe.d/grml
1631   * Removed hotplug-light from grml-autoconfig interface and
1632     set default for discover to 'off'.
1633
1634  -- Michael Prokop <mika@grml.org>  Sat, 31 Dec 2005 18:22:25 +0100
1635
1636 grml-autoconfig (0.2-25) unstable; urgency=low
1637
1638   * Some small changes in look'n'feel.
1639   * Run config_small earlier.
1640   * Rewrote output code of discover function.
1641   * Rewrote code of config_acpi_apm.
1642   * Added CONFIG_SETKEYCODES.
1643   * Lot's of code cleanups.
1644   * Rewrote bootoptions passwd and ssh.
1645   * Implemented bootoption blacklist (notice: not used currently).
1646
1647  -- Michael Prokop <mika@grml.org>  Tue, 27 Dec 2005 19:37:48 +0100
1648
1649 grml-autoconfig (0.2-24) unstable; urgency=low
1650
1651   * Added check for RAM to config_small.
1652   * Switched log_* lsb-functions to e* stuff.
1653
1654  -- Michael Prokop <mika@grml.org>  Tue, 27 Dec 2005 17:17:49 +0100
1655
1656 grml-autoconfig (0.2-23) unstable; urgency=low
1657
1658   * Fixed typo in config_fstab.
1659
1660  -- Michael Prokop <mika@grml.org>  Wed, 21 Dec 2005 10:26:32 +0100
1661
1662 grml-autoconfig (0.2-22) unstable; urgency=low
1663
1664   * Don't use static values for grml-autoconfig interface.
1665
1666  -- Michael Prokop <mika@grml.org>  Sun, 18 Dec 2005 21:55:06 +0100
1667
1668 grml-autoconfig (0.2-21) unstable; urgency=low
1669
1670   * Use 'harddisk' instead of 'Harddisk' as infotext (thx4hint,
1671     Jens Kubieziel!).
1672
1673  -- Michael Prokop <mika@grml.org>  Sat, 17 Dec 2005 23:16:39 +0100
1674
1675 grml-autoconfig (0.2-20) unstable; urgency=low
1676
1677   * Added config_debnet (thanks, Marc Haber!).
1678
1679  -- Michael Prokop <mika@grml.org>  Sat, 17 Dec 2005 18:54:25 +0100
1680
1681 grml-autoconfig (0.2-19) unstable; urgency=low
1682
1683   * Fixed bug in config_cdrom_scripts which prevented
1684     execution of files in /cdrom/scripts/.
1685
1686  -- Michael Prokop <mika@grml.org>  Tue, 13 Dec 2005 19:16:45 +0100
1687
1688 grml-autoconfig (0.2-18) unstable; urgency=low
1689
1690   * Run grml2hd-noninteractive inside GNU screen.
1691   * Deactivate hotplug(-light) as udev handles this stuff
1692     already.
1693   * Added config_vmware (creates xorg.conf based on template).
1694
1695  -- Michael Prokop <mika@grml.org>  Sun, 11 Dec 2005 12:39:34 +0100
1696
1697 grml-autoconfig (0.2-17) unstable; urgency=low
1698
1699   * Some clean ups in lsb-functions.
1700
1701  -- Michael Prokop <mika@grml.org>  Mon,  5 Dec 2005 11:21:11 +0100
1702
1703 grml-autoconfig (0.2-16) unstable; urgency=low
1704
1705   * Adjusted hotplug-system for use with udev >=0.076-4.
1706   * Merged gentoo-functions into lsb-functions.
1707
1708  -- Michael Prokop <mika@grml.org>  Sun,  4 Dec 2005 23:31:38 +0100
1709
1710 grml-autoconfig (0.2-15) unstable; urgency=low
1711
1712   * Added bootoption 'nomodules' to disable loading of modules
1713     defined in /etc/grml/modules.
1714
1715  -- Michael Prokop <mika@grml.org>  Sat,  3 Dec 2005 15:31:00 +0100
1716
1717 grml-autoconfig (0.2-14) unstable; urgency=low
1718
1719   * Support module-init-tools-style of loading specific modules
1720     through /etc/grml/modules - only available when running from
1721     CD.
1722
1723  -- Michael Prokop <mika@grml.org>  Sat,  3 Dec 2005 12:42:03 +0100
1724
1725 grml-autoconfig (0.2-13) unstable; urgency=low
1726
1727   * Adjust /etc/hosts when using bootparam 'hostname=...' as well.
1728
1729  -- Michael Prokop <mika@grml.org>  Thu,  1 Dec 2005 13:23:10 +0100
1730
1731 grml-autoconfig (0.2-12) unstable; urgency=low
1732
1733   * Use getent for getting fstabuser.
1734
1735  -- Michael Prokop <mika@grml.org>  Sat, 26 Nov 2005 19:58:02 +0100
1736
1737 grml-autoconfig (0.2-11) unstable; urgency=low
1738
1739   * Upps, spelling error in fstab infotext - fixed that.
1740
1741  -- Michael Prokop <mika@grml.org>  Mon, 21 Nov 2005 22:45:52 +0100
1742
1743 grml-autoconfig (0.2-10) unstable; urgency=low
1744
1745   * Added infotext to config_fstab how to disable fstab generation.
1746
1747  -- Michael Prokop <mika@grml.org>  Mon, 21 Nov 2005 15:58:59 +0100
1748
1749 grml-autoconfig (0.2-9) unstable; urgency=low
1750
1751   * 855resolution is now 915resolution.
1752   * Added support for setting hostname via bootparam 'hostname=...'.
1753   * Added bootparam distcc, set via distcc=$NETWORK,$LISTENER.
1754
1755  -- Michael Prokop <mika@grml.org>  Wed, 16 Nov 2005 18:31:41 +0100
1756
1757 grml-autoconfig (0.2-8) unstable; urgency=low
1758
1759   * Just a small cosmetic fix in GRMLCFG-code.
1760
1761  -- Michael Prokop <mika@grml.org>  Thu, 10 Nov 2005 23:38:16 +0100
1762
1763 grml-autoconfig (0.2-7) unstable; urgency=low
1764
1765   * Adjusted output of floppy mount of GRMLCFG device.
1766   * Removed debug output in language code.
1767
1768  -- Michael Prokop <mika@grml.org>  Thu, 10 Nov 2005 10:51:23 +0100
1769
1770 grml-autoconfig (0.2-6) unstable; urgency=low
1771
1772   * Some small bugfixes in config_swap.
1773   * Improved language settings. Setting LANGUAGE is now also possible
1774     via configuring $LANGUAGE in /etc/grml/autoconfig.
1775
1776  -- Michael Prokop <mika@grml.org>  Tue,  8 Nov 2005 13:49:23 +0100
1777
1778 grml-autoconfig (0.2-5) unstable; urgency=low
1779
1780   * Added CONFIG_FAST for skipping startup of w3m via bootparam
1781     'fast'.
1782
1783  -- Michael Prokop <mika@grml.org>  Sun,  6 Nov 2005 16:25:12 +0100
1784
1785 grml-autoconfig (0.2-4) unstable; urgency=low
1786
1787   * Added /etc/init.d/grml-autoconfig.strace
1788
1789  -- Michael Prokop <mika@grml.org>  Thu,  3 Nov 2005 17:03:37 +0100
1790
1791 grml-autoconfig (0.2-3) unstable; urgency=low
1792
1793   * Added check for existence of /usr/X11R6/bin/X in startx
1794     bootparam.
1795
1796  -- Michael Prokop <mika@grml.org>  Tue,  1 Nov 2005 19:32:44 +0100
1797
1798 grml-autoconfig (0.2-2) unstable; urgency=low
1799
1800   * Fixed message of accessing floppy disk in config_automount.
1801
1802  -- Michael Prokop <mika@grml.org>  Tue,  1 Nov 2005 18:46:11 +0100
1803
1804 grml-autoconfig (0.2-1) unstable; urgency=low
1805
1806   * Let's bumb version to 0.2 as grml-autoconfig is already shipped
1807     with grml 0.5.
1808   * Let's drop /etc/init.d/grml-autoconfig.old
1809   * Changed access to floppy device from mount command to dd
1810     in config_automount (thanks for idea, gebi!).
1811
1812  -- Michael Prokop <mika@grml.org>  Tue,  1 Nov 2005 18:35:50 +0100
1813
1814 grml-autoconfig (0.1-56) unstable; urgency=low
1815
1816   * Added infotext in config_automount.
1817
1818  -- Michael Prokop <mika@grml.org>  Sun, 23 Oct 2005 16:35:37 +0200
1819
1820 grml-autoconfig (0.1-55) unstable; urgency=low
1821
1822   * Improved device handling in config_automount.
1823
1824  -- Michael Prokop <mika@grml.org>  Sun, 23 Oct 2005 15:25:26 +0200
1825
1826 grml-autoconfig (0.1-54) unstable; urgency=low
1827
1828   * Automounting works so added CONFIG_AUTOMOUNT to autoconfig
1829     and autoconfig.small.
1830   * Improved config_debug so we can use screen with full featured
1831     shell (providing job handling).
1832   * We have to use directory /cdrom/bootparams/ and not a single
1833     file for multisessions.
1834
1835  -- Michael Prokop <mika@grml.org>  Sun, 23 Oct 2005 12:45:09 +0200
1836
1837 grml-autoconfig (0.1-53) unstable; urgency=low
1838
1839   * Invoke a /bin/zsh after running grml2hd in non-interactive
1840     mode in any case.
1841   * We do need check for /cdrom/bootparams in /etc/init.d/grml-autoconfig
1842     of course.
1843
1844  -- Michael Prokop <mika@grml.org>  Sun, 23 Oct 2005 00:40:13 +0200
1845
1846 grml-autoconfig (0.1-52) unstable; urgency=low
1847
1848   * Finished documentation in /etc/grml/autoconfig[.small].
1849
1850  -- Michael Prokop <mika@grml.org>  Thu, 20 Oct 2005 11:42:26 +0200
1851
1852 grml-autoconfig (0.1-51) unstable; urgency=low
1853
1854   * Only a small clean up of info message in config_homedir.
1855
1856  -- Michael Prokop <mika@grml.org>  Tue, 18 Oct 2005 21:52:31 +0200
1857
1858 grml-autoconfig (0.1-50) unstable; urgency=low
1859
1860   * Updated config_modem (don't start if it sl-modem is not present).
1861
1862  -- Michael Prokop <mika@grml.org>  Mon, 17 Oct 2005 16:16:31 +0200
1863
1864 grml-autoconfig (0.1-49) unstable; urgency=low
1865
1866   * Added partconf to CONFIG_MYCONFIG.
1867   * Fixed problem in script grml-autoconfig with exit status
1868     of set_values-function.
1869   * Added wlan to strings of /proc/net/dev in config_dhcp (thanks to
1870     Martin 'mabu' Buchleitner!).
1871   * Fixed architecure specific things.
1872     - This package is an architecture all file
1873     - acpid is i386, amd64 only, so added apmd as alternative
1874     -> Thanks Alexander Wirt <formorer@debian.org>!
1875   * Use /cdrom/bootparams for additional bootparams.
1876   * Oh, it's /var/log/boot and not bootlogd - adjusted infotext.
1877
1878  -- Michael Prokop <mika@grml.org>  Wed, 12 Oct 2005 16:29:20 +0200
1879
1880 grml-autoconfig (0.1-48) unstable; urgency=low
1881
1882   * Rewrote CONFIG_MYCONFIG.
1883
1884  -- Michael Prokop <mika@grml.org>  Tue, 11 Oct 2005 18:30:06 +0200
1885
1886 grml-autoconfig (0.1-47) unstable; urgency=low
1887
1888   * Removed CONFIG_RNETCONFIG and rewrote functions for
1889     CONFIG_NETCONFIG.
1890
1891  -- Michael Prokop <mika@grml.org>  Thu,  6 Oct 2005 17:26:08 +0200
1892
1893 grml-autoconfig (0.1-46) unstable; urgency=low
1894
1895   * Deprecated CONFIG_REMOUNT_ROOT.
1896
1897  -- Michael Prokop <mika@grml.org>  Wed,  5 Oct 2005 23:11:57 +0200
1898
1899 grml-autoconfig (0.1-45) unstable; urgency=low
1900
1901   * Oh, NONINTERACTIVE does not work as expected for hotplug-light.
1902     Changed back to old behaviour therefore.
1903
1904  -- Michael Prokop <mika@grml.org>  Sun,  2 Oct 2005 17:35:17 +0200
1905
1906 grml-autoconfig (0.1-44) unstable; urgency=low
1907
1908   * Updated finish langauge settings (merged from knoppix mailing
1909     list).
1910
1911  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 21:41:13 +0200
1912
1913 grml-autoconfig (0.1-43) unstable; urgency=low
1914
1915   * Adjusted BOOTDEBUG with printk-settings.
1916
1917  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 16:16:47 +0200
1918
1919 grml-autoconfig (0.1-42) unstable; urgency=low
1920
1921   * Fixed rebuildfstab command.
1922
1923  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 14:44:39 +0200
1924
1925 grml-autoconfig (0.1-41) unstable; urgency=low
1926
1927   * Run hotplug-light with NONINTERACTIVE=yes so we supress
1928     error messages while booting...
1929   * Upps, hotplug-light was already in depends, removed again.
1930
1931  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 12:11:10 +0200
1932
1933 grml-autoconfig (0.1-40) unstable; urgency=low
1934
1935   * Moved kernel ring buffer settings behind color-stuff.
1936   * Added hotplug-light to depends.
1937
1938  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 02:08:48 +0200
1939
1940 grml-autoconfig (0.1-39) unstable; urgency=low
1941
1942   * Use grml-autoconfig in runlevel 2: modified postinstall script.
1943   * Added syslog-ng to depends.
1944
1945  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 02:03:17 +0200
1946
1947 grml-autoconfig (0.1-38) unstable; urgency=low
1948
1949   * Added gpm to depends.
1950
1951  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 00:51:52 +0200
1952
1953 grml-autoconfig (0.1-37) unstable; urgency=low
1954
1955   * Added check if rebuildfstab binary is present.
1956
1957  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 00:34:33 +0200
1958
1959 grml-autoconfig (0.1-36) unstable; urgency=low
1960
1961   * Added /etc/sysconfig-directory with empty files to make sure
1962     the files exist.
1963
1964  -- Michael Prokop <mika@grml.org>  Sat,  1 Oct 2005 00:15:53 +0200
1965
1966 grml-autoconfig (0.1-35) unstable; urgency=low
1967
1968   * Modified gpm-startup (thanks, gebi!) - this should fix the
1969     "missing /dev/psaux" problem.
1970   * Added CONFIG_855RESOLUTION.
1971   * Updated manpage.
1972
1973  -- Michael Prokop <mika@grml.org>  Tue, 27 Sep 2005 22:34:13 +0200
1974
1975 grml-autoconfig (0.1-34) unstable; urgency=low
1976
1977   * Adjusted infotext in grml-autonconfig for dhcp-option
1978     (s/dhclient/pump/) [thanks for reporting, hecka!].
1979   * Added cf (French Canadian version) to suppported languages
1980     (taken from knoppix mailinglist).
1981
1982  -- Michael Prokop <mika@grml.org>  Tue, 27 Sep 2005 13:10:33 +0200
1983
1984 grml-autoconfig (0.1-33) unstable; urgency=low
1985
1986   * Implemented boot options for automatic grml2hd-installation:
1987     - user
1988     - filesystem
1989     - partition
1990     - bootpartition
1991   * Adjust kernel ring buffer at beginng of grml-autoconfig.
1992
1993  -- Michael Prokop <mika@grml.org>  Sun, 25 Sep 2005 00:53:32 +0200
1994
1995 grml-autoconfig (0.1-32) unstable; urgency=low
1996
1997   * Added check for root-permissions to script grml-autoconfig.
1998
1999  -- Michael Prokop <mika@grml.org>  Sat, 24 Sep 2005 23:15:49 +0200
2000
2001 grml-autoconfig (0.1-31) unstable; urgency=low
2002
2003   * Added CONFIG_GRML2HD for automatic installation via bootoption
2004     grml2hd.
2005
2006  -- Michael Prokop <mika@grml.org>  Wed, 21 Sep 2005 22:25:13 +0200
2007
2008 grml-autoconfig (0.1-30) unstable; urgency=low
2009
2010   * No, let's drop the /proc/bus/usb code, we should handle this via
2011     /etc/init.d/mountvirtfs.
2012
2013  -- Michael Prokop <mika@grml.org>  Wed, 21 Sep 2005 18:45:42 +0200
2014
2015 grml-autoconfig (0.1-29) unstable; urgency=low
2016
2017   * Let's mount /proc/bus/usb in mount_proc if not booting with 'nousb'.
2018
2019  -- Michael Prokop <mika@grml.org>  Wed, 21 Sep 2005 18:38:43 +0200
2020
2021 grml-autoconfig (0.1-28) unstable; urgency=low
2022
2023   * Let's drop config_checkfs -> CONFIG_CHECKFS='no', we should
2024     handle this via update-rc.d / runlevels.
2025   * Use 'hostname --file /etc/hostname' instead of 'hostname grml'
2026     and use it also on harddisk installations.
2027
2028  -- Michael Prokop <mika@grml.org>  Tue, 20 Sep 2005 14:55:21 +0200
2029
2030 grml-autoconfig (0.1-27) unstable; urgency=low
2031
2032   * Let's use 'xorgcfg -textmode' for interactive setup.
2033
2034  -- Michael Prokop <mika@grml.org>  Sat, 17 Sep 2005 12:05:18 +0200
2035
2036 grml-autoconfig (0.1-26) unstable; urgency=low
2037
2038   * Redirect output of check_partitions to /dev/null.
2039   * Moved startup of syslog to an earlier place.
2040
2041  -- Michael Prokop <mika@grml.org>  Fri, 16 Sep 2005 13:50:58 +0200
2042
2043 grml-autoconfig (0.1-25) unstable; urgency=low
2044
2045   * Modified bootoption 'log'; bootlogd is broken with sysvinit_2.86.ds1-2_i386.deb
2046     but works with sysvinit_2.86.ds1-1.1_i386.deb, hmpf.
2047
2048  -- Michael Prokop <mika@grml.org>  Mon, 12 Sep 2005 10:22:25 +0200
2049
2050 grml-autoconfig (0.1-24) unstable; urgency=low
2051
2052   * Let's make autoconfig.functions executable and use /usr/bin/zsh.
2053   * Fixed bootoption 'log' (missing a variable export).
2054
2055  -- Michael Prokop <mika@grml.org>  Mon, 12 Sep 2005 02:53:15 +0200
2056
2057 grml-autoconfig (0.1-23) unstable; urgency=low
2058
2059   * Added new bootoption CONFIG_FWTIMEOUT for setting timeout
2060     for firmware loading (via /sys/class/firmware/timeout).
2061
2062  -- Michael Prokop <mika@grml.org>  Mon, 12 Sep 2005 01:57:59 +0200
2063
2064 grml-autoconfig (0.1-22) unstable; urgency=low
2065
2066   * Adjusted options for use with new config framework (CONFIG_NETCONFIG /
2067     CONFIG_RNETCONFIG). (Thanks for reporting, Marc Haber!)
2068
2069  -- Michael Prokop <mika@grml.org>  Sat, 10 Sep 2005 11:47:38 +0200
2070
2071 grml-autoconfig (0.1-21) unstable; urgency=low
2072
2073   * Some small eye-candy-improvements in script grml-autoconfig.
2074     Output message if adjusting values worked, error message on failure.
2075
2076  -- Michael Prokop <mika@grml.org>  Mon,  5 Sep 2005 01:49:23 +0200
2077
2078 grml-autoconfig (0.1-20) unstable; urgency=low
2079
2080   * Renamed config_config to config_netconfig, config_rconfig to
2081     config_rnetconfig.
2082   * Added config_scripts, config_debs, config_config.
2083   * Some more cleanups (changed some more echo-ing stuff
2084     to lsb-functions).
2085
2086  -- Michael Prokop <mika@grml.org>  Mon,  5 Sep 2005 01:23:59 +0200
2087
2088 grml-autoconfig (0.1-19) unstable; urgency=low
2089
2090   * The 'now we have an interface and are lintian-clean' release.
2091   * Added script grml-autoconfig (interface to configuration
2092     file /etc/grml/autoconfig).
2093   * Renamed CONFIG_HOTPLUG to CONFIG_HOTPLUG_MAIN.
2094   * Made package lintian-clean (use /usr/bin/zsh as zsh path,
2095     added dependency to zsh, let's use update-rc.d for
2096     /etc/init.d/grml-autoconfig).
2097
2098  -- Michael Prokop <mika@grml.org>  Mon,  5 Sep 2005 00:26:20 +0200
2099
2100 grml-autoconfig (0.1-18) unstable; urgency=low
2101
2102   * Added config_fix_passwd (fix passwd-problem).
2103
2104  -- Michael Prokop <mika@grml.org>  Wed, 17 Aug 2005 21:23:09 +0200
2105
2106 grml-autoconfig (0.1-17) unstable; urgency=low
2107
2108   * Added small hint to config_x_startup.
2109
2110  -- Michael Prokop <mika@grml.org>  Sun, 14 Aug 2005 17:58:57 +0200
2111
2112 grml-autoconfig (0.1-16) unstable; urgency=low
2113
2114   * Let's support startx only on live-cd-systems (because of
2115     the init-hack). Prompt useful message instead on harddisk-systems.
2116
2117  -- Michael Prokop <mika@grml.org>  Sun, 14 Aug 2005 14:32:15 +0200
2118
2119 grml-autoconfig (0.1-15) unstable; urgency=low
2120
2121   * Fixed value for cs/cz-keyboard-layout.
2122   * Added checkgrmlusb.
2123   * Added config_x_startup for bootparam 'startx[=windowmanager]'.
2124   * Improved handling of DEBUG=.....
2125   * Let's run loadkeys in background.
2126
2127  -- Michael Prokop <mika@grml.org>  Sun,  7 Aug 2005 21:22:54 +0200
2128
2129 grml-autoconfig (0.1-14) unstable; urgency=low
2130
2131   * Improved language support for grml-small (let's use LANG=C there) via
2132     function checkgrmlsmall.
2133
2134  -- Michael Prokop <mika@grml.org>  Thu, 28 Jul 2005 10:13:15 +0200
2135
2136 grml-autoconfig (0.1-13) unstable; urgency=low
2137
2138   * We don't want to use mouseconfig anymore.
2139
2140  -- Michael Prokop <mika@grml.org>  Thu, 14 Jul 2005 11:49:53 +0200
2141
2142 grml-autoconfig (0.1-12) unstable; urgency=low
2143
2144   * We don't need kbdconfig anymore, now we call
2145     /usr/sbin/dpkg-reconfigure console-data.
2146
2147  -- Michael Prokop <mika@grml.org>  Thu, 14 Jul 2005 11:33:10 +0200
2148
2149 grml-autoconfig (0.1-11) unstable; urgency=low
2150
2151   * Added support for bootsplash.
2152   * Reordered execution of grml-autoconfig functions.
2153
2154  -- Michael Prokop <mika@grml.org>  Sun, 10 Jul 2005 12:37:52 +0200
2155
2156 grml-autoconfig (0.1-10) unstable; urgency=low
2157
2158   * Adjusted black-bootparam for use with hotplug-light.
2159   * Fixed passwd and ssh bootparams (problems with chpasswd).
2160   * Added CONFIG_CONSOLE for use with mgetty.
2161   * Slightly improved CONFIG_CREATE_MNT_DIRS.
2162
2163  -- Michael Prokop <mika@grml.org>  Tue,  5 Jul 2005 00:10:38 +0200
2164
2165 grml-autoconfig (0.1-9) unstable; urgency=low
2166
2167   * Fixed 'grml testcd'-cheatcode (md5sum-handling).
2168
2169  -- Michael Prokop <mika@grml.org>  Mon,  4 Jul 2005 01:29:08 +0200
2170
2171 grml-autoconfig (0.1-8) unstable; urgency=low
2172
2173   * Let's always activate check_partitions.
2174   * Fixed debug bootparam handling.
2175
2176  -- Michael Prokop <mika@grml.org>  Sun,  3 Jul 2005 23:28:39 +0200
2177
2178 grml-autoconfig (0.1-7) unstable; urgency=low
2179
2180   * Adjusted hotplug for use with hotplug-light (but still works
2181     with hotplug anyway).
2182
2183  -- Michael Prokop <mika@grml.org>  Sun,  3 Jul 2005 21:06:09 +0200
2184
2185 grml-autoconfig (0.1-6) unstable; urgency=low
2186
2187   * Added CONFIG_CREATE_MNT_DIRS for creating all directories defined
2188     as mounting target in /etc/fstab.
2189
2190  -- Michael Prokop <mika@grml.org>  Sat,  2 Jul 2005 23:07:31 +0200
2191
2192 grml-autoconfig (0.1-5) unstable; urgency=low
2193
2194   * Added workaround/fix for unionfs ('apt-...' segfaults cause
2195     of problems with /var/cache/apt/*.bin): CONFIG_FIX_UNIONFS
2196   * Let's create firewire devices not only with kernel 2.6.11.
2197   * Improved CONFIG_LD_MOD.
2198
2199  -- Michael Prokop <mika@grml.org>  Fri,  1 Jul 2005 01:09:31 +0200
2200
2201 grml-autoconfig (0.1-4) unstable; urgency=low
2202
2203   * Updated conflicts (for installation without conflicts with grml-etc).
2204
2205  -- Michael Prokop <mika@grml.org>  Sat, 25 Jun 2005 22:55:23 +0200
2206
2207 grml-autoconfig (0.1-3) unstable; urgency=low
2208
2209   * Included new grml-autoconfig-framework. Now it's possible to
2210     control grml-autoconfig behaviour via /etc/grml/autoconfig.
2211     Notice that you can fall back to /etc/init.d/grml-autoconfig.old
2212     if you consider any problems at the moment.
2213
2214  -- Michael Prokop <mika@grml.org>  Sat, 25 Jun 2005 00:51:16 +0200
2215
2216 grml-autoconfig (0.1-2) unstable; urgency=low
2217
2218   * Added conflicts to debian/control.
2219
2220  -- Michael Prokop <mika@grml.org>  Thu,  9 Jun 2005 00:49:48 +0200
2221
2222 grml-autoconfig (0.1-1) unstable; urgency=low
2223
2224   * Initial release.
2225
2226  -- Michael Prokop <mika@grml.org>  Sun,  5 Jun 2005 18:47:51 +0200
2227