--- ./microcode_ctl.start.00 2004-09-09 16:49:52.580191760 +0100 +++ ./microcode_ctl.start 2004-09-09 16:37:28.333334480 +0100 @@ -41,6 +41,11 @@ if [ "$VERBOSE" != "no" ] ; then END=debian_end fi +elif [ -f /etc/debian_version ]; then + . /etc/default/rcS + if [ "$VERBOSE" != "no" ] ; then + END=debian_end + fi elif [ -f /etc/slackware-version ]; then . /etc/rc.d/rc.sysvinit if [ "$VERBOSE" != "no" ]; then --- ./Makefile.00 2004-09-09 16:23:20.000000000 +0100 +++ ./Makefile 2004-09-09 16:52:38.358989552 +0100 @@ -53,9 +53,11 @@ $(INS) -m 755 $(RCFILE) $(DESTDIR)$(RCFILETO)/$(RCFILEFINAL) ifndef DESTDIR - chkconfig --add $(RCFILEFINAL) + update-rc.d -f $(RCFILEFINAL) remove + update-rc.d $(RCFILEFINAL) defaults + else - echo "MAKE: Skipping chkconfig operation (rpm build?)" + echo "MAKE: Skipping update-rc.d operation" endif device: @@ -64,7 +66,7 @@ uninstall: ifndef DESTDIR - chkconfig --del $(RCFILEFINAL) + update-rc.d -f $(RCFILEFINAL) remove endif # shame there isn't reverse of install... rm $(DESTDIR)$(INSDIR)/$(PROGRAM) \ --- ./Changelog.00 2004-09-09 16:22:00.000000000 +0100 +++ ./Changelog 2004-09-09 16:57:24.208533816 +0100 @@ -36,3 +36,6 @@ updated the 1.07 tarball with newer microcode from Intel 1.09 02 Sept 2004, Simon Trimmer updated the 1.08 tarball with newer microcode from Intel +?.?? 02 Sept 2004, Simon Trimmer + patch submitted by Francisco Javier Jimenez Gomez + for debian unstable 3.1 support!