Fix some questionable MAC addresses

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4956 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-07-19 22:32:19 +00:00
parent a1f980bc9d
commit 635f7151fb
13 changed files with 58 additions and 58 deletions

View File

@@ -99,10 +99,10 @@ int nsh_netinit(void)
#ifdef CONFIG_NSH_NOMAC
mac[0] = 0x00;
mac[1] = 0xe0;
mac[2] = 0xb0;
mac[3] = 0x0b;
mac[4] = 0xba;
mac[5] = 0xbe;
mac[2] = 0xde;
mac[3] = 0xad;
mac[4] = 0xbe;
mac[5] = 0xef;
uip_setmacaddr("eth0", mac);
#endif