PERFORCE change 111282 for review

Warner Losh imp at FreeBSD.org
Fri Dec 8 01:25:40 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=111282

Change 111282 by imp at imp_lighthouse on 2006/12/08 09:25:32

	Us a different magic number

Affected files ...

.. //depot/projects/arm/src/sys/boot/arm/at91/boot2/kb920x_board.c#7 edit

Differences ...

==== //depot/projects/arm/src/sys/boot/arm/at91/boot2/kb920x_board.c#7 (text+ko) ====

@@ -41,7 +41,7 @@
 	uint32_t sig;
 	sig = 0;
 	ReadEEPROM(12 * 1024, (uint8_t *)&sig, sizeof(sig));
-	if (sig != 0xaa55aa55)
+	if (sig != 0x92021054)
 		return;
 	ReadEEPROM(12 * 1024 + 4, mac, 6);
 	printf("MAC %x:%x:%x:%x:%x:%x\n", mac[0],


More information about the p4-projects mailing list