diff options
author | Denys Dmytriyenko <denys@ti.com> | 2013-03-18 18:06:38 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2013-03-18 21:31:32 -0400 |
commit | 7c9f57083ec3e0e06d5ef0d390c12f1a79cc85fd (patch) | |
tree | 98cc1315974988bc1131846b38f06b14bb83d996 /recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch | |
parent | 3b49d182d54e77a2f82d3bcb4ed3b5cb33b7fe56 (diff) | |
download | meta-ti-7c9f57083ec3e0e06d5ef0d390c12f1a79cc85fd.tar.gz |
u-boot-am37x: modify am37x specific version to use new namespace feature
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch')
-rw-r--r-- | recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch b/recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch new file mode 100644 index 00000000..05df3222 --- /dev/null +++ b/recipes-bsp/u-boot/u-boot-am37x-2012.04.01/0001-omap3_beagle-add-usbethaddr-setting-to-enable-networ.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | From c56786770eb0ccb95204cb72b961c44c65ff343b Mon Sep 17 00:00:00 2001 | ||
2 | From: Chase Maupin <Chase.Maupin@ti.com> | ||
3 | Date: Thu, 17 May 2012 09:51:50 -0500 | ||
4 | Subject: [PATCH] omap3_beagle: add usbethaddr setting to enable networking | ||
5 | |||
6 | * In order for the SMSC USB ethernet device to work the | ||
7 | usbethaddr setting must be set when the "usb start" command | ||
8 | is executed and the network device is discovered. | ||
9 | * Currently set this for de:ad:be:ef until we can start | ||
10 | generating random or semi-random MAC addresses. | ||
11 | * Based on work by Steve Kipisz and Joel Fernandez | ||
12 | |||
13 | Upstream-Status: Not Upstreamable | ||
14 | * We cannot upstream this hard coded MAC address setting. | ||
15 | * User's should look at the following web page for information on | ||
16 | how to generate a MAC address, but this patch enables the out | ||
17 | of box experience for the SDK. | ||
18 | http://www.denx.de/wiki/view/DULG/WhereCanIGetAValidMACAddress | ||
19 | |||
20 | |||
21 | Signed-off-by: Chase Maupin <Chase.Maupin@ti.com> | ||
22 | --- | ||
23 | include/configs/omap3_beagle.h | 1 + | ||
24 | 1 files changed, 1 insertions(+), 0 deletions(-) | ||
25 | |||
26 | diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h | ||
27 | index ddeb414..58a29b8 100644 | ||
28 | --- a/include/configs/omap3_beagle.h | ||
29 | +++ b/include/configs/omap3_beagle.h | ||
30 | @@ -219,6 +219,7 @@ | ||
31 | "loadaddr=0x80200000\0" \ | ||
32 | "rdaddr=0x81000000\0" \ | ||
33 | "usbtty=cdc_acm\0" \ | ||
34 | + "usbethaddr=de:ad:be:ef\0" \ | ||
35 | "bootfile=uImage.beagle\0" \ | ||
36 | "console=ttyO2,115200n8\0" \ | ||
37 | "mpurate=auto\0" \ | ||
38 | -- | ||
39 | 1.7.0.4 | ||
40 | |||