~dannf/ubuntu/trusty/flash-kernel/mustang-upstream

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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
flash-kernel (3.0~rc.4ubuntu35) saucy; urgency=low

  * Check /proc/device-tree/model before /proc/cpuinfo (LP: #1164484)
  * Add support for Calxeda ECX-2000 to the machine DB (LP: #1223439)
  * Add generic-lpae to the XB-Subarchitecture list in debian/control
  * Update the Highbank entry in DB to use its device-tree model name

 -- Adam Conrad <adconrad@ubuntu.com>  Tue, 10 Sep 2013 14:36:05 -0400

flash-kernel (3.0~rc.4ubuntu34) saucy; urgency=low

  * Extending Android specific options to cover the Ubuntu Touch use cases
    (flashing to a specific device and support skipping initrd)
  * Enabling support for mako (Nexus 4)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Tue, 14 May 2013 04:27:01 -0300

flash-kernel (3.0~rc.4ubuntu33) raring; urgency=low

  * Also update XB-Subarchitecture to use "generic" instead of 'highbank"
    (LP: #1170515)

 -- dann frazier <dann.frazier@canonical.com>  Sun, 21 Apr 2013 09:36:29 -0600

flash-kernel (3.0~rc.4ubuntu32) raring; urgency=low

  * flash-plugin-installer: make installable on armhf/generic for highbank

 -- dann frazier <dann.frazier@canonical.com>  Thu, 18 Apr 2013 16:39:18 -0600

flash-kernel (3.0~rc.4ubuntu31) raring; urgency=low

  * Accept "generic" as a valid kernel flavor on highbank (LP: #1164074)

 -- dann frazier <dann.frazier@canonical.com>  Wed, 03 Apr 2013 12:48:56 -0600

flash-kernel (3.0~rc.4ubuntu30) raring; urgency=low

  * Do not run flash-kernel inside an LXC container (LP: #1160360)

 -- Jean-Baptiste Lallement <jean-baptiste.lallement@canonical.com>  Wed, 27 Mar 2013 16:29:20 +0100

flash-kernel (3.0~rc.4ubuntu29) raring; urgency=low

  * determine the latest installer kernel version in the target rootfs instead
    of assuming the version is the same as the running kernel (LP: #1084106)
  * drop the "|| true" from the initramfs building code, if we fail here we
    actually dont want to attempt to flash that

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 04 Dec 2012 17:24:49 +0100

flash-kernel (3.0~rc.4ubuntu28) raring; urgency=low

  * make sure blkid only gives us the UUID and not any other metadata like
    labels or filesystem (LP: #1079185)

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 16 Nov 2012 15:40:21 +0100

flash-kernel (3.0~rc.4ubuntu27) quantal; urgency=low

  * add support for the grouper architecture

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 08 Oct 2012 14:44:41 +0200

flash-kernel (3.0~rc.4ubuntu26) quantal-proposed; urgency=low

  * make sure that /dev is bind mounted in /target when running
    update-initramfs from flash-kernel-installer, else we do not find the boot
    media (this is only a workaround for LP: #1056482 actual fixing of the
    netinst environment is needed to fix this properly)

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 26 Sep 2012 15:27:06 +0200

flash-kernel (3.0~rc.4ubuntu25) quantal; urgency=low

  * make sure we only rename the bootrom partition so udisks hides it,
    when using mkdosfs for setting the label like we did in jasper (where
    we cached the contents before doing this) MLO and u-boot.bin are gone
    (LP: #1055938).

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 25 Sep 2012 10:31:32 +0200

flash-kernel (3.0~rc.4ubuntu24) quantal; urgency=low

  * hide the boot device from udisk's automounting after installation
    on all systems using uEnv.txt to configure u-boot

 -- Oliver Grawert <ogra@ubuntu.com>  Mon, 17 Sep 2012 14:25:37 +0200

flash-kernel (3.0~rc.4ubuntu23) quantal; urgency=low

  * initramfs-tools/hooks/flash_kernel_set_root:
    - make sure that if we dont want to override the bootloader root= option by
      setting "Bootloader-sets-root: yes", we actually dont do it
    - Also check for FLASH_KERNEL_SKIP to avoid setting up the root parameter
      in case flash-kernel will not be used
    - this is a slightly different approach to fix bug (LP: #1034734) than the
      patch attached to the bug.

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 13 Sep 2012 14:02:48 +0200

flash-kernel (3.0~rc.4ubuntu22) quantal; urgency=low

  * do not move the original uEnvtxt.omap to the target, use a copy instead
  * make /etc/default/flash-kernel a proper conffile

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 23 Aug 2012 11:49:01 +0200

flash-kernel (3.0~rc.4ubuntu21) quantal; urgency=low

  * switch omap3 and omap4 to uEnv.txt/preEnv.txt (the former holds all active
    boot commands, the latter holds the kernel commandline only)
  * enable generation of a /etc/default/flash-kernel file from
    flash-kernel-installer holding a UBOOT_DEFAULTS variable with distro
    default settings (ro quiet splash)
  * enable UUID detection of the currently used root device
  * if uEnv.txt is defined in the db for an arch, generate preEnv.txt from
    UBOOT_DEFAULTS and UUID detection data
  * switch omap3 and omap4 from Bootloader-sets-root: no to yes, we now
    generate a root=UUID= line on the fly for arches using uEnv.txt/preEnv.txt
  * introduce bootscript/uEnvtxt.omap

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 22 Aug 2012 21:56:09 +0200

flash-kernel (3.0~rc.4ubuntu20) quantal; urgency=low

  * seemingly -k all doesnt want to work with -c, use -k $(uname -r) for now

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 10 Aug 2012 18:29:34 +0200

flash-kernel (3.0~rc.4ubuntu19) quantal; urgency=low

  * flash-kernel-installer.postinst: now that we have a diversion in place
    there isnt a pre-existing initrd, instead of calling update-initramfs -u
    we better call update-initramfs -c -k all to create one from scratch,
    fixes (LP: #1035269)

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 10 Aug 2012 17:49:00 +0200

flash-kernel (3.0~rc.4ubuntu18) quantal; urgency=low

  * make post-base-installer.d/01flash-kernel-diversion executable

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 09 Aug 2012 13:59:15 +0200

flash-kernel (3.0~rc.4ubuntu17) quantal; urgency=low

  * sigh, not only drop the creation of /var/lib/flash-kernel/configured but
    also the check for its existance, else we will always exit 0

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Aug 2012 20:03:20 +0200

flash-kernel (3.0~rc.4ubuntu16) quantal; urgency=low

  * re-add a diversion for update-initramfs to live-installers
    post-base-installer.d to avoid update-initramfs runs before
    flash-kernel is configured
  * re-add a check for the diverted update-initramfs to
    flash-kernel-installer, so it gets reverted before we try to call
    update-initramfs
  * drop teh super ugly hack that added a /var/lib/flash-kernel/configured
    file to actually check if flash-kernel is configured

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 07 Aug 2012 19:52:51 +0200

flash-kernel (3.0~rc.4ubuntu15) quantal; urgency=low

  * Fix armadaxp kernel load address (LP: #1026835).

 -- Robie Basak <robie.basak@ubuntu.com>  Tue, 31 Jul 2012 16:31:30 +0100

flash-kernel (3.0~rc.4ubuntu14) quantal-proposed; urgency=low

  * better do the "configured" check in /var/lib

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 25 Jul 2012 18:03:18 +0200

flash-kernel (3.0~rc.4ubuntu13) quantal-proposed; urgency=low

  * add very very ugly temporary workaround to make quantal A3 arm server
    installs possible (yes, i suck)

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 25 Jul 2012 17:16:16 +0200

flash-kernel (3.0~rc.4ubuntu12) quantal; urgency=low

  * remove the diversion code again, it doesnt help since
    flash-kernel-installer.udeb only comes into play to late so the
    post-base-installer.d file isnt available at live-installer time

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 25 Jul 2012 14:38:24 +0200

flash-kernel (3.0~rc.4ubuntu11) quantal; urgency=low

  * make post-base-installer.d/01flash-kernel-diversion actually an executable
    shell script

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 24 Jul 2012 15:33:46 +0200

flash-kernel (3.0~rc.4ubuntu10) quantal; urgency=low

  * add a diversion for update-initramfs to live-installers
    post-base-installer.d to avoid update-initramfs runs before
    flash-kernel is configured
  * add a check for the diverted update-initramfs to flash-kernel-installer,
    so it gets reverted before we try to call update-initramfs

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 24 Jul 2012 15:28:37 +0200

flash-kernel (3.0~rc.4ubuntu9) quantal; urgency=low

  * Also add omap and omap4 to flash-kernel-installer.isinstallable.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 20 Jul 2012 11:42:33 +1000

flash-kernel (3.0~rc.4ubuntu8) quantal; urgency=low

  * debian/control: Re-add omap and omap4 to the flash-kernel-installer
    XB-Subarchitecture field. These appear to have been lost somewhere along
    the way.

 -- Luke Yelavich <themuso@ubuntu.com>  Fri, 20 Jul 2012 11:39:08 +1000

flash-kernel (3.0~rc.4ubuntu7) quantal; urgency=low

  * make sure the call to abootimg -i does not make the script fail (checking
    non bootimg devices makes it return 1 even though there is no error, this
    in turn makes teh whole script fail since we run with "set -e")

 -- Oliver Grawert <ogra@ubuntu.com>  Tue, 17 Jul 2012 13:20:43 +0200

flash-kernel (3.0~rc.4ubuntu6) quantal; urgency=low

  * add DB entry for "OMAP3 Beagle Board" (funnily thats missing)
  * add Panda to the list of supported board in the README file

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 06 Jul 2012 15:59:48 +0200

flash-kernel (3.0~rc.4ubuntu5) quantal; urgency=low

  * use umount -l in the cleanup function, else we fail while finishing up
    with the script (LP: #1014139)

 -- Oliver Grawert <ogra@ubuntu.com>  Thu, 05 Jul 2012 19:43:02 +0200

flash-kernel (3.0~rc.4ubuntu4) quantal; urgency=low

  * also add FLASH_KERNEL_SKIP to the initramfs post update script, this
    should finally fix ac100 image building

 -- Oliver Grawert <ogra@ubuntu.com>  Fri, 22 Jun 2012 11:20:39 +0200

flash-kernel (3.0~rc.4ubuntu3) quantal; urgency=low

  * re-add support for the FLASH_KERNEL_SKIP env variable, so the image build
    infrastructure has a chance to skip the automated flash-kernel run during
    image builds.

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 20 Jun 2012 16:41:28 +0200

flash-kernel (3.0~rc.4ubuntu2) quantal; urgency=low

  * add "quiet splash" as default options to omap bootscr

 -- Oliver Grawert <ogra@ubuntu.com>  Wed, 20 Jun 2012 16:25:31 +0200

flash-kernel (3.0~rc.4ubuntu1) quantal; urgency=low

  [ dann frazier ]
  * Re-add support for Marvell ArmadaXP

  [ Robie Basak ]
  * Add support for Calxeda Highbank

 -- Robie Basak <robie.basak@ubuntu.com>  Thu, 31 May 2012 10:09:53 +0100

flash-kernel (3.0~rc.4) unstable; urgency=low

  * Upload to unstable 

 -- Hector Oron <zumbi@debian.org>  Sun, 11 Mar 2012 14:51:15 +0000

flash-kernel (3.0~rc.3) experimental; urgency=low

  [ Hector Oron ]
  * Replace uboot-mkimage by u-boot-tools.

  [ Loïc Minier ]
  * Remove executable on database file.
  * Following changes thanks to Steve McIntyre:
    - Fix breakage when Boot-Device isn't set.
    - db: Fix kernel load address for DB-78x00-BP.
    - db: Add support for MX53 LOCO Board.
  * Also replace uboot-mkimage with u-boot-tools in db; closes: #607614.

 -- Loïc Minier <lool@debian.org>  Sat, 10 Mar 2012 01:17:09 +0100

flash-kernel (3.0~rc.2) experimental; urgency=low

  * New kernel and initramfs hooks, new logic: flash-kernel always installs
    the latest version according to linux-version and ignores other calls.
    - Fixes installation of new kernel ABIs; closes: #550584.
    - NEWS, man page: document new behavior.
    - flash-kernel depends on linux-base >= 3.2 for linux-version.
  * Add support for triggers; see #550584 for discussion.
  * Misc syntax fixes / cleanups / refactoring; tweak output.
    - Fix some bogus messages in error conditions.
    - Refactor flash-kernel-installer and initramfs-tools hook to use shared
      function and database.
    - Split code and testsuite out.
  * Toshiba AC100 / Android handling; thanks to Julian Andres Klode for his
    input (and patience :-)
    - abootimg would now be installed via flash-kernel-installer.
    - set default root= in initrd.
    - drop Android-Boot-Config hurts more than it helps
    - don't try checking for a specific size; instead let abootimg handle size
      checks for us; size checks were meant to identify the largest partition,
      instead just scan all partitions from MMC and chose the largest one.
  * Add OMAP4 Pandaboard support.
  * Split out database in its own file under /usr/share/flash-kernel/db/;
    document format in README.
  * Drop Extra-Cmdline used in EfikaMX boot scripts; instead rely on initrd to
    set root= (as for other boards).
  * Drop accidental support for Thecus N4100 in f-k-i.

 -- Loïc Minier <lool@debian.org>  Thu, 10 Nov 2011 23:59:24 +0100

flash-kernel (3.0~rc.1) experimental; urgency=low

  [ Loïc Minier ]
  * Bump Standards-Version to 3.9.2.
  * Add a testsuite and run it during build; change code a bit to be more
    easily tested.
  * Start reworking flash-kernel to be more data-driven.
    - Keep some machine data in a small embedded RFC 2822 style database; such
      as allowed kernel flavors, machine id to set before booting Linux,
      MTD names, U-Boot load addresses, /boot filenames etc.
    - Simplify code in the main "case" statement as much as possible by using
      functions for common code and splitting error handling, initialization,
      and sanity checks out.
    - Various syntax tweaks.
  * Only allow iop32x kernels on GLAN Tank.
  * Fix Lintian warnings.
    - Quote minus signs in man page.
    - Depend on ${misc:Depends}.
  * Add myself to Uploaders at tbm's proposal.
  * Add myself to flash-kernel's Copyright and to debian/copyright; thanks
    Martin Michlmayr.

  [ Hector Oron ]
  * Add armhf to architecture list (Closes: #620888)
    - add mx5 as armhf subarchitecture
  * Add myself to Uploaders field.
  * Add preliminary mv78xx0 support. (Closes: #594878)
  * Add build dependency on devio, needed to run test-suite.
  * Upgrade major version to 3.0~rc.1
  * Add support for Genesi Efika MX nettops and smarttops. (Closes: #612376)
  * Add preliminary U-Boot script support (Closes: #626434)

  [ Julian Andres Klode ]
  * Support for Toshiba AC100 (Closes: #631396)

  [ Martin Michlmayr ]
  * Remove myself from the Uploaders field.

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * German (de.po) by Holger Wansing
  * Esperanto (eo.po) by Felipe Castro
  * Basque (eu.po)
  * Hebrew (he.po) by Lior Kaplan
  * Italian (it.po) by Milo Casagrande
  * Korean (ko.po) by Changwoo Ryu
  * Macedonian (mk.po) by Arangel Angov
  * Romanian (ro.po) by Eddy Petrișor
  * Sinhala (si.po) by Danishka Navin
  * Slovak (sk.po) by Ivan Masár
  * Swedish (sv.po) by Daniel Nylander
  * Uyghur (ug.po) by Sahran
  * Simplified Chinese (zh_CN.po) by YunQiang Su

 -- Hector Oron <zumbi@debian.org>  Wed, 24 Aug 2011 12:47:34 +0100

flash-kernel (2.39) unstable; urgency=low

  * Add support for Buffalo Linkstation LiveV3 (LS-CHL).  Closes: #612167
  * Add support for Buffalo Linkstation Mini (LS-WSGL).

 -- Martin Michlmayr <tbm@cyrius.com>  Wed, 02 Mar 2011 17:56:22 +0000

flash-kernel (2.38) unstable; urgency=low

  [ Updated translations ]
  * Lao (lo.po) by Anousak Souphavanh

 -- Otavio Salvador <otavio@ossystems.com.br>  Fri, 24 Dec 2010 21:19:58 -0200

flash-kernel (2.37) unstable; urgency=low

  * Don't set a default root device when the specified root device
    does not exist.

  [ Updated translations ]
  * si (si.po) by Danishka Navin

 -- Martin Michlmayr <tbm@cyrius.com>  Thu, 18 Nov 2010 17:03:33 +0000

flash-kernel (2.36) unstable; urgency=low

  [ Updated translations ]
  * Bengali (bn.po) by Israt Jahan

 -- Otavio Salvador <otavio@debian.org>  Fri, 12 Nov 2010 15:41:17 -0200

flash-kernel (2.35) unstable; urgency=low

  * Add support for "GTA02" (Neo FreeRunner).  Patch from Thibaut Girka.
    Closes: #593235

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 05 Nov 2010 13:28:03 +0000

flash-kernel (2.34) unstable; urgency=low

  * Rebuild without .svn directories.  Closes: #601318

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 25 Oct 2010 14:56:55 +0100

flash-kernel (2.33) unstable; urgency=medium

  * Add support for Seagate FreeAgent DockStar.
  * Remove obsolete information about the kernel postinst hook from the
    README file.
  * Fix insecure usage of temporary files.  Discovered and patched by
    Loïc Minier, thanks!

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 19 Oct 2010 19:33:26 +0100

flash-kernel (2.32) unstable; urgency=low

  [ Updated translations ]
  * Belarusian (be.po) by Viktar Siarheichyk
  * Persian (fa.po) by acathur
  * Kazakh (kk.po) by Baurzhan Muftakhidinov
  * Central Khmer (km.po) by Khoem Sokhem
  * Kurdish (ku.po) by Erdal Ronahi
  * Macedonian (mk.po) by Arangel Angov

 -- Otavio Salvador <otavio@debian.org>  Sun, 11 Jul 2010 17:47:41 -0300

flash-kernel (2.31) unstable; urgency=low

  * Add support for the HP t5325 Thin Client.

 -- Martin Michlmayr <tbm@cyrius.com>  Sat, 19 Jun 2010 13:12:44 +0100

flash-kernel (2.30) unstable; urgency=low

  * Add support for OpenRD-Ultimate.

 -- Martin Michlmayr <tbm@cyrius.com>  Sat, 19 Jun 2010 11:02:44 +0100

flash-kernel (2.29) unstable; urgency=low

  * Add support for the GuruPlug.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 24 May 2010 13:56:57 +0100

flash-kernel (2.28) unstable; urgency=low

  [ John Holland ]
  * Add support for the eSATA SheevaPlug.

  [ Updated translations ]
  * Belarusian (be.po) by Pavel Piatruk
  * Bengali (bn.po) by Israt Jahan
  * German (de.po) by Holger Wansing
  * Slovenian (sl.po) by Vanja Cvelbar

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 16 Mar 2010 16:15:19 +0000

flash-kernel (2.27) unstable; urgency=low

  [ Martin Michlmayr ]
  * Add support for the QNAP TS-410, TS-410U, TS-419P and TS-419U
    Turbo NAS.
  * Mention that the QNAP TS-110 and TS-210 Turbo NAS are supported.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 03 Nov 2009 17:28:08 +0000

flash-kernel (2.26) unstable; urgency=low

  [ Martin Michlmayr ]
  * Add an option --machine to specify the device but leave this option
    undocumented since it only has limited use.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 02 Nov 2009 21:43:08 +0000

flash-kernel (2.25) unstable; urgency=low

  [ Colin Watson ]
  * Use the EXIT trap instead of ERR, which is a bashism.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 19 Oct 2009 17:16:14 +0100

flash-kernel (2.24) unstable; urgency=low

  [ Martin Michlmayr ]
  * Move back flash-kernel to its original location upon failure of
    the udeb postinst, otherwise the postinst will fail when run
    another time.
  * Don't hardcode the machine ID for Marvell SheevaPlug, OpenRD-Base
    and OpenRD-Client since the boot loader will (or can be configured
    to) use the correct machine ID.  This allows installed disks to be
    shared between these devices.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 18 Oct 2009 18:29:05 +0100

flash-kernel (2.23) unstable; urgency=low

  [ Colin Watson ]
  * Upgrade to debhelper v7.

  [ Martin Michlmayr ]
  * Add support for the Marvell OpenRD-Base and OpenRD-Client.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 28 Sep 2009 21:53:22 +0100

flash-kernel (2.22) unstable; urgency=low

  [ Martin Michlmayr ]
  * Add the Intel SS4000-E to the README file as a supported device.
  * Fix syntax error in the postinst of the udeb.

 -- Martin Michlmayr <tbm@cyrius.com>  Thu, 30 Jul 2009 08:18:55 +0200

flash-kernel (2.21) unstable; urgency=low

  * debian/flash-kernel-installer.postinst: run update-initramfs -u in
    case of Lanner EM7210, so as to override root= kernel argument.
  * debian/rules: add "-X.svn" line to dh_install call, so that
    subversion directories aren't needlessly copied

 -- Wouter Verhelst <wouter@debian.org>  Sat, 25 Jul 2009 14:37:49 +0200

flash-kernel (2.20) unstable; urgency=low

  * Add support for Lanner EM7210 and compatibles (e.g., Intel SS4000-e)

 -- Wouter Verhelst <wouter@debian.org>  Sat, 06 Jun 2009 14:42:34 +0200

flash-kernel (2.19) unstable; urgency=low

  * Add support for the SheevaPlug.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 25 May 2009 21:12:05 +0200

flash-kernel (2.18) unstable; urgency=low

  [ Colin Watson ]
  * Make findfs use the last of any mounts found, in case there's more than
    one due to pilot error in the partitioner.

  [ Martin Michlmayr ]
  * No longer add a kernel postinst hook that calls flash-kernel.  Closes:
    #526640
  * Add a NEWS file telling people that they can remove the postinst hook.
  * Depend on initramfs-tools (>= 0.92f), which was the first version
    that called flash-kernel.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 19 May 2009 12:56:10 +0200

flash-kernel (2.17) unstable; urgency=low

  * Add kirkwood as a supported subarchitecture, but only activate
    flash-kernel on the QNAP TS-119/TS-219 so far.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 31 Mar 2009 21:31:12 +0200

flash-kernel (2.16) unstable; urgency=low

  [ Otavio Salvador ]
  * Apply patch from Per Andersson <avtobiff@gmail.com> to update the
    manpage to describe the behaviour of the subarch check and the new
    naming conventions.  Closes: #521356

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 31 Mar 2009 17:29:26 +0200

flash-kernel (2.15) unstable; urgency=low

  [ Colin Watson ]
  * Remove unused cruft from debian/rules, pointed out by Loïc Minier.
  * Add lots of defensive shell quoting, also pointed out by Loïc Minier.

  [ Martin Michlmayr ]
  * Add support for QNAP TS-119 and TS-219 Turbo NAS.
  * Remove some code duplication in the initramfs hook.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 24 Mar 2009 20:03:24 +0100

flash-kernel (2.14) unstable; urgency=low

  * Display a message when the generation of the u-boot image for the
    D-Link DNS-323 is done.

  [ Updated translations ]
  * Galician (gl.po) by marce villarino
  * Hindi (hi.po) by Kumar Appaiah
  * Kazakh (kk.po) by daur88
  * Malayalam (ml.po) by Praveen Arimbrathodiyil

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 08 Mar 2009 22:03:02 +0100

flash-kernel (2.13) unstable; urgency=high

  * Map LVM devices in the form of /dev/vg/lv to /dev/mapper/...,
    otherwise initramfs-tools won't initialize them.  Closes: #513504

 -- Martin Michlmayr <tbm@cyrius.com>  Thu, 29 Jan 2009 23:10:16 +0100

flash-kernel (2.12) unstable; urgency=high

  * Rebuild with fixed Danish translation

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 09 Jan 2009 22:26:38 +0100

flash-kernel (2.11) unstable; urgency=low

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
  * Bosnian (bs.po) by Armin Besirovic
  * Danish (da.po)
  * Latvian (lv.po) by Peteris Krisjanis
  * Macedonian (mk.po) by Arangel Angov
  * Albanian (sq.po) by Elian Myftiu
  * Serbian (sr.po) by Veselin Mijušković
  * Ukrainian (uk.po) by Євгеній Мещеряков

 -- Frans Pop <fjp@debian.org>  Tue, 23 Sep 2008 05:29:36 +0200

flash-kernel (2.10) unstable; urgency=low

  * Temporarily move flash-kernel out of the way in the udeb postinst
    so update-initramfs won't call flash-kernel; otherwise we'd call
    it twice.

  [ Updated translations ]
  * Catalan (ca.po) by Jordi Mallach
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Kumar Appaiah
  * Croatian (hr.po) by Josip Rodin
  * Hungarian (hu.po) by SZERVÁC Attila
  * Indonesian (id.po) by Arief S Fitrianto
  * Georgian (ka.po) by Aiet Kolkhi
  * Central Khmer (km.po) by KHOEM Sokhem
  * Malayalam (ml.po) by പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍
  * Nepali (ne.po) by Shiva Prasad Pokharel
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by Amanpreet Singh Alam
  * Polish (pl.po) by Bartosz Fenski
  * Tamil (ta.po) by Dr.T.Vasudevan
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke
  * Simplified Chinese (zh_CN.po) by Deng Xiyue

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 15 Sep 2008 13:24:21 +0300

flash-kernel (2.9) unstable; urgency=low

  * Pause again when an unknown root is found.
  * Print a better warning when the LABEL is not found.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 24 Aug 2008 21:31:20 +0300

flash-kernel (2.8) unstable; urgency=low

  * Make sure that ROOT in the initramfs is properly quoted.
  * Support disk LABELs that contain / (inspired by #489008).

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 24 Aug 2008 17:56:31 +0300

flash-kernel (2.7) unstable; urgency=low

  * Fix UUID warning to refer to the correct directory.
  * Improve warning shown when LABEL doesn't exist in /dev/disk/by-label.
  * Use sda2 rather than sda1 as root device (when parsing of /etc/fstab
    fails) since this is what the installer will use by default.
  * Move GLAN Tank support from glantank-utils/glantank-installer to
    this package.
  * Put in one more step in the progress bar (typically before the long
    update-initramfs call).
  * Stop the progress bar when an error occurs, thanks Frans Pop.

  [ Updated translations ]
  * Greek, Modern (1453-) (el.po)

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 24 Aug 2008 16:37:17 +0300

flash-kernel (2.6) unstable; urgency=low

  * Set FSCKFIX=yes in /etc/default/rcS to stop fsck from prompting the
    user for input since most users don't have a serial console.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 17 Aug 2008 16:31:53 +0300

flash-kernel (2.5) unstable; urgency=low

  [ Joey Hess ]
  * Add a --supported option that can be used to check if flash-kernel
    should be used.

  [ Martin Michlmayr ]
  * Add support for Buffalo Linkstation Pro/Live based on existing Kurobox
    support.  Thanks to Tim Small for testing the change.
  * Add support for D-Link DNS-323 (not tested on real hardware).

  [ Updated translations ]
  * French (fr.po) by Christian Perrier
  * Croatian (hr.po) by Josip Rodin
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 10 Aug 2008 16:35:22 +0300

flash-kernel (2.4) unstable; urgency=low

  * Add support for the Buffalo Kurobox Pro.  Patch from Per Andersson
    as part of his Google Summer of Code project.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 21 Jul 2008 12:55:53 +0300

flash-kernel (2.3) unstable; urgency=low

  * Update the man page to say that flash-kernel now also supports
    devices that require a special boot image on disk.
  * Improve the package description and README.
  * Install mv2120-utils on the HP mv2120 if it's available but don't
    fail if it's not (since the package is not essential for
    operation).

  [ Updated translations ]
  * German (de.po) by Jens Seidel

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 14 Jul 2008 23:01:27 +0300

flash-kernel (2.2) unstable; urgency=low

  * mv2120: Don't fail when the "boot" symlink exists already.

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * Korean (ko.po) by Changwoo Ryu
  * Swedish (sv.po) by Daniel Nylander

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 13 Jul 2008 15:35:32 +0300

flash-kernel (2.1.1) unstable; urgency=low

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Esko Arajärvi
  * Galician (gl.po) by Jacobo Tarrio
  * Gujarati (gu.po) by Kartik Mistry
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Marathi (mr.po) by Sampada
  * Dutch (nl.po) by Frans Pop
  * Portuguese (pt.po) by Miguel Figueiredo
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Vietnamese (vi.po) by Clytie Siddall

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 08 Jul 2008 09:09:49 +0300

flash-kernel (2.1) unstable; urgency=low

  * Check whether /dev/mtdblockX is a block device before writing to
    it since the device might not exist when a user has disabled
    udev.  Closes: #488565

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Belarusian (be.po) by Pavel Piatruk
  * Bulgarian (bg.po) by Damyan Ivanov
  * Czech (cs.po) by Miroslav Kure
  * German (de.po) by Jens Seidel
  * Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
  * Esperanto (eo.po) by Esperanto
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Iñaki Larrañaga Murgoitio
  * Finnish (fi.po) by Esko Arajärvi
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Indonesian (id.po) by Arief S Fitrianto
  * Italian (it.po) by Milo Casagrande
  * Japanese (ja.po) by Kenshi Muto
  * Korean (ko.po) by Changwoo Ryu
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Marathi (mr.po) by Sampada
  * Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
  * Dutch (nl.po) by Frans Pop
  * Portuguese (pt.po) by Miguel Figueiredo
  * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
  * Romanian (ro.po) by Eddy Petrișor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Ivan Masár
  * Slovenian (sl.po) by Matej Kovacic
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja
  * Turkish (tr.po) by Mert Dirik
  * Vietnamese (vi.po) by Clytie Siddall
  * Wolof (wo.po) by Mouhamadou Mamoune Mbacke
  * Simplified Chinese (zh_CN.po) by Kov Chai

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 30 Jun 2008 13:36:24 +0200

flash-kernel (2.0) unstable; urgency=low

  [ Joey Hess ]
  * Try to install the new ixp4xx-microcode package, falling back to copying
    microcode files only if the installation fails.
  * Remove code to copy ixp4xx-microcode files from d-i to target.
    This is handled more generically by hw-detect version 1.64.

  [ Martin Michlmayr ]
  * Add support for HP Media Vault mv2120 (this machine actually boots
    from disk rather then flash; but it makes sense to use the
    infrastructure provided by flash-kernel).
  * Update the package description and README to say that flash-kernel
    makes embedded devices bootable (either by putting the kernel and
    ramdisk in flash or by constructing a specific boot image).
  * Update the debconf notes accordingly, thanks Christian Perrier.
  * Increase the version number to reflect these changes in purpose.
  * Add an ellipsis to progress bar indicators as recommended by
    Christian Perrier.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 29 Jun 2008 14:33:17 +0200

flash-kernel (1.11) unstable; urgency=low

  * Add support for QNAP TS-409.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 11 May 2008 09:35:11 +0200

flash-kernel (1.10) unstable; urgency=low

  * Add orion5x to XB-Subarchitecture, thanks Frans Pop.

 -- Martin Michlmayr <tbm@cyrius.com>  Sat, 10 May 2008 19:55:09 +0200

flash-kernel (1.9) unstable; urgency=low

  [ Martin Michlmayr ]
  * Add a Depends on initramfs-tools, thanks Tim Froidcoeur.

  [ Updated translations ]
  * Marathi (mr.po) by Sampada
  * Panjabi (pa.po) by Amanpreet Singh Alam

 -- Martin Michlmayr <tbm@cyrius.com>  Sat, 10 May 2008 07:53:48 +0200

flash-kernel (1.8) unstable; urgency=low

  [ Martin Michlmayr ]
  * Add support for QNAP TS-109/TS-209.
  * Sync the Thecus initramfs-tools hook with the one from nslu2-utils:
    - Support LABEL and UUID in /etc/fstab.
    - Fix fstab parsing to ignore comments.
  * Make the initramfs-tools hook to set the root partition more generic
    and run it on Thecus N2100, QNAP TS-109/TS-209 and Linksys NSLU2.
  * Improve the initramfs-tools hook (to set the root partition):
    - Handle quoted LABELs and UUIDs.  Closes: #471390
    - Check if the specified UUID actually exists.  Closes: #471393
    - Accept multiple = characters in a string.
  * Remove support for the old Intel IXP4xx Ethernet driver.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 25 Mar 2008 19:36:14 +0100

flash-kernel (1.7) unstable; urgency=low

  [ Joey Hess ]
  * Copy nslu2 firmware idempotently.

  [ Updated translations ]
  * Amharic (am.po) by tegegne tefera
  * Indonesian (id.po) by Arief S Fitrianto
  * Korean (ko.po) by Changwoo Ryu
  * Kurdish (ku.po) by Erdal Ronahi
  * Latvian (lv.po) by Viesturs Zarins
  * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
  * Panjabi (pa.po) by A S Alam
  * Traditional Chinese (zh_TW.po) by Tetralet

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 15 Feb 2008 10:03:39 +0100

flash-kernel (1.6) unstable; urgency=low

  * Check whether kernel and ramdisk fit into flash before writing
    them.
  * Use the whole partition available for the ramdisk on NSLU2 (6 MB),
    not just the first 4 MB.  In order to be actually able to use
    ramdisks larger than 4 MB, a new version of APEX is needed though
    (see #451882).
  * Remove Iomega NAS 100d support at the request of Rod Whitby since
    the firmware does CRC checks and this isn't handled yet.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 20 Nov 2007 09:41:57 +0100

flash-kernel (1.5) unstable; urgency=low

  * Missed in the menu item number transition. Multiply menu item number by
    1000.

 -- Joey Hess <joeyh@debian.org>  Sun, 28 Oct 2007 15:10:12 -0400

flash-kernel (1.4) unstable; urgency=low

  * Convert the error about subarchitecture mismatches to a warning
    (but still don't write the bogus kernel to flash).

  [ Updated translations ]
  * Italian (it.po) by Stefano Canepa
  * Vietnamese (vi.po) by Clytie Siddall

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 28 Sep 2007 15:04:46 +0200

flash-kernel (1.3) unstable; urgency=low

  [ Otavio Salvador ]
  * Replace 'base-installer' dependency by 'installed-base' virtual
    package. Needs base-installer 1.81.

 -- Joey Hess <joeyh@debian.org>  Mon, 18 Jun 2007 17:19:29 -0400

flash-kernel (1.2) unstable; urgency=low

  [ Martin Michlmayr ]
  * Make the parsing code more robust so searching for "foo" won't match
    "foo2".  Thanks, Rod Whitby.
  * Print an error when the subarchitecture of the kernel doesn't match
    that of the device.  Closes: #411551.

  [ Rod Whitby ]
  * Add support for Iomega NAS 100d.  Closes: #403017.

  [ Gordon Farquharson ]
  * Reduce the running time of flash-kernel on the NSLU2 by almost 30
    seconds.  Closes: #413373.

  [ Updated translations ]
  * Basque (eu.po) by Piarres Beobide

 -- Martin Michlmayr <tbm@cyrius.com>  Wed, 25 Apr 2007 13:51:12 +0200

flash-kernel (1.1) unstable; urgency=low

  [ Joey Hess ]
  * Add armel and armeb architectures.

  [ Updated translations ]
  * Hebrew (he.po) by Lior Kaplan
  * Malayalam (ml.po) by Praveen A

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 27 Feb 2007 19:51:03 +0000

flash-kernel (1.0) unstable; urgency=low

  * Fix comment about the Sercomm header.  Closes: #402142.

  [ Updated translations ]
  * Arabic (ar.po) by Ossama M. Khayat
  * Danish (da.po) by Claus Hindsgaul
  * Esperanto (eo.po) by Serge Leblanc
  * Kurdish (ku.po) by rizoye-xerzi
  * Latvian (lv.po) by Aigars Mahinovs
  * Malayalam (ml.po) by Praveen A
  * Norwegian Nynorsk (nn.po) by Håvard Korsvoll
  * Panjabi (pa.po) by A S Alam
  * Romanian (ro.po) by Eddy Petrișor
  * Slovenian (sl.po) by Matej Kovačič

 -- Martin Michlmayr <tbm@cyrius.com>  Thu, 01 Feb 2007 16:28:02 +0100

flash-kernel (0.8) unstable; urgency=low

  [ Martin Michlmayr ]
  * Speed up flash-kernel on NSLU2 by reading the second part of the
    kernel in one go rather than byte by byte.
  * Write the kernel first, followed by the initramfs on Thecus N2100
    (for comsmetics reasons only).

  [ Updated translations ]
  * Bulgarian (bg.po) by Damyan Ivanov
  * Bosnian (bs.po) by Safir Secerovic
  * Polish (pl.po) by Bartosz Fenski

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 10 Nov 2006 08:15:06 +0000

flash-kernel (0.7) unstable; urgency=high

  * Copy the ixp400 modules to target if they exist.  This code got lost
    in the transition from nslu2-firmware-installer to this package.

 -- Martin Michlmayr <tbm@cyrius.com>  Sun, 29 Oct 2006 11:41:34 +0100

flash-kernel (0.6) unstable; urgency=low

  * Provide an initramfs-tools hook for Thecus N2100/N4100 so the
    right root paramater is given to the kernel.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 23 Oct 2006 22:49:32 +0100

flash-kernel (0.5) unstable; urgency=low

  * Install the NSLU2 microcode to the target if it's found on the d-i
    image.
  * Changed the priority of flash-kernel-installer to standard so d-i will
    load it by default.

 -- Martin Michlmayr <tbm@cyrius.com>  Mon, 23 Oct 2006 12:03:41 +0100

flash-kernel (0.4) unstable; urgency=low

  * Add ixp4xx to XB-Subarchitecture.

 -- Martin Michlmayr <tbm@cyrius.com>  Wed, 18 Oct 2006 10:59:25 +0100

flash-kernel (0.3) unstable; urgency=low

  * Install nslu2-utils and apex-nslu2 on NSLU2 devices.
  * Update flash-kernel-installer.isinstallable to list NSLU2.

  [ Updated translations ]
  * Bengali (bn.po) by Mahay Alam Khan ( আলম)
  * Catalan (ca.po) by Jordi Mallach
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * Esperanto (eo.po) by Serge Leblanc
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Estonian (et.po) by Siim Põder
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Tapio Lehtonen
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Hungarian (hu.po) by SZERVÁC Attila
  * Italian (it.po) by Stefano Canepa
  * Japanese (ja.po) by Kenshi Muto
  * Khmer (km.po) by Khoem Sokhem
  * Portuguese (pt.po) by Miguel Figueiredo
  * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Slovak (sk.po) by Peter Mann
  * Swedish (sv.po) by Daniel Nylander
  * Turkish (tr.po) by Recai Oktaş
  * Ukrainian (uk.po) by Eugeniy Meshcheryakov

 -- Martin Michlmayr <tbm@cyrius.com>  Fri, 06 Oct 2006 10:17:27 +0100

flash-kernel (0.2) unstable; urgency=low

  [ Martin Michlmayr ]
  * Make the isinstallable script of flash-kernel-installer executable.
  * Add support for Linksys NSLU2.

  [ Christian Perrier ]
  * Correct debconf templates to fit the D-I writing style and add i18n stuff

  [ Joey Hess ]
  * Only build the deb for the architectures that it supports (currently only
    arm).

  [ Updated translations ]
  * Czech (cs.po) by Miroslav Kure
  * Danish (da.po) by Claus Hindsgaul
  * Greek (el.po) by quad-nrg.net
  * Spanish (es.po) by Javier Fernández-Sanguino Peña
  * Basque (eu.po) by Piarres Beobide
  * Finnish (fi.po) by Tapio Lehtonen
  * French (fr.po) by Christian Perrier
  * Galician (gl.po) by Jacobo Tarrio
  * Hebrew (he.po) by Lior Kaplan
  * Hindi (hi.po) by Nishant Sharma
  * Lithuanian (lt.po) by Kęstutis Biliūnas
  * Dutch (nl.po) by Bart Cornelis
  * Portuguese (pt.po) by Miguel Figueiredo
  * Romanian (ro.po) by Eddy Petrişor
  * Russian (ru.po) by Yuri Kozlov
  * Swedish (sv.po) by Daniel Nylander
  * Thai (th.po) by Theppitak Karoonboonyanan
  * Tagalog (tl.po) by Eric Pareja

 -- Martin Michlmayr <tbm@cyrius.com>  Sat, 30 Sep 2006 16:26:00 +0200

flash-kernel (0.1) unstable; urgency=low

  [ Martin Michlmayr ]
  * Initial release.
  * Add support for Thecus N2100.

  [ Joey Hess ]
  * Remove hardcoded path from kernel-image.conf, should not be necessary.
  * Fix i386 build issue.

 -- Martin Michlmayr <tbm@cyrius.com>  Tue, 26 Sep 2006 15:14:51 +0200