microcode_ctl/microcode_ctl.patch

60 lines
1.8 KiB
Diff
Raw Normal View History

2005-09-14 02:57:16 +00:00
--- microcode_ctl-1.12/Makefile~ Mon Jun 11 16:57:42 2001
+++ microcode_ctl-1.12/Makefile Tue Jan 8 20:20:58 2002
@@ -20,7 +20,7 @@
PREFIX = /usr/local
INSDIR = $(PREFIX)/sbin
-MANDIR = $(PREFIX)/man/man8
+MANDIR = $(PREFIX)/share/man/man8
MICDIR = /etc
RCFILE = microcode_ctl.start
@@ -45,7 +45,7 @@
$(DESTDIR)$(RCLINKTO)
- $(INS) -s -m 755 $(PROGRAM) $(DESTDIR)$(INSDIR)
+ $(INS) -m 755 $(PROGRAM) $(DESTDIR)$(INSDIR)
- $(INS) -m 644 $(MICROCODE) $(DESTDIR)$(MICDIR)/microcode.dat
+ $(INS) -m 644 $(MICROCODE) $(DESTDIR)/etc/firmware/microcode.dat
$(INS) -m 644 $(MANPAGE) $(DESTDIR)$(MANDIR)
gzip -9f $(DESTDIR)$(MANDIR)/$(MANPAGE)
2005-09-14 02:57:16 +00:00
--- microcode_ctl-1.12/microcode_ctl.c.org 2003-05-28 19:56:22.000000000 +0200
+++ microcode_ctl-1.12/microcode_ctl.c 2003-05-28 19:57:01.000000000 +0200
@@ -95,11 +95,13 @@
{
FILE *fd;
char line_buffer[BUFFER_SIZE];
- int microcode[MAX_MICROCODE];
+ int *microcode;
int *pos;
int outfd;
int wrote, length;
+ microcode=malloc(sizeof(int)* MAX_MICROCODE);
+ if (!microcode) return ENOMEM;
if( (fd=fopen(filename, "r")) == NULL){
if(print_error_messages)
@@ -146,7 +146,7 @@
return errno;
}
- if( (wrote = write(outfd, &microcode, length)) < 0){
+ if( (wrote = write(outfd, microcode, length)) < 0){
if(print_error_messages)
fprintf(stderr, "%s: error writing to '%s' errno=%d (%s)\n"
"%s: there may be messages from the driver in your system log.\n",
2005-09-14 02:57:16 +00:00
--- microcode_ctl-1.12/microcode_ctl.c~ 2005-01-21 17:42:53.000000000 -0500
+++ microcode_ctl-1.12/microcode_ctl.c 2005-01-21 17:43:03.000000000 -0500
2005-01-21 22:45:05 +00:00
@@ -25,7 +25,7 @@ int print_error_messages=1;
#define MAX_MICROCODE 2000000
#define MICROCODE_DEVICE_DEFAULT "/dev/cpu/microcode"
-#define MICROCODE_FILE_DEFAULT "/etc/microcode.dat"
+#define MICROCODE_FILE_DEFAULT "/etc/firmware/microcode.dat"
static void usage(void)
{