* [U-Boot] [PULL] u-boot-usb/master
@ 2017-08-21 9:32 Marek Vasut
2017-08-22 20:49 ` [U-Boot] [PATCH] fastboot: Ensure we treat CONFIG_FASTBOOT_BUF_ADDR as long Tom Rini
2017-08-22 20:53 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini
0 siblings, 2 replies; 4+ messages in thread
From: Marek Vasut @ 2017-08-21 9:32 UTC (permalink / raw)
To: u-boot
The following changes since commit 2d7cb5b426e7e0cdf684d7f8029ad132d7a8d383:
env: Replace all open-coded gd->env_valid values with ENV_ flags
(2017-08-20 19:27:44 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to 5bf4475f1d7726541edec0060c6461fbb37db02d:
doc: license: Add license header to the README.dfutftp file
(2017-08-21 11:31:11 +0200)
----------------------------------------------------------------
Bin Meng (1):
usb: ehci: Convert CONFIG_USB_EHCI_PCI to Kconfig
John Keeping (1):
fastboot: avoid printing invalid data
Lukasz Majewski (1):
doc: license: Add license header to the README.dfutftp file
Peter Chubb (1):
Fix fastboot boot address
Tom Rini (2):
common/fb_mmc.c: Fix warnings about casts
fb_mmc.c: Correct blk_dread() return value checks
common/fb_mmc.c | 8 ++++----
configs/MPC8544DS_defconfig | 1 +
configs/MPC8572DS_36BIT_defconfig | 1 +
configs/MPC8572DS_defconfig | 1 +
doc/README.dfutftp | 8 ++++++++
drivers/usb/gadget/f_fastboot.c | 4 ++--
drivers/usb/host/Kconfig | 6 ++++++
include/configs/MPC8544DS.h | 1 -
include/configs/MPC8572DS.h | 1 -
include/configs/efi-x86.h | 1 -
include/configs/x86-common.h | 1 -
scripts/config_whitelist.txt | 1 -
12 files changed, 23 insertions(+), 11 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread* [U-Boot] [PATCH] fastboot: Ensure we treat CONFIG_FASTBOOT_BUF_ADDR as long
2017-08-21 9:32 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
@ 2017-08-22 20:49 ` Tom Rini
2017-08-22 20:53 ` Tom Rini
2017-08-22 20:53 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini
1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2017-08-22 20:49 UTC (permalink / raw)
To: u-boot
Otherwise:
drivers/usb/gadget/f_fastboot.c:564:32: warning: format "%lx" expects
argument of type "long unsigned int", but argument 3 has type "unsigned
int" [-Wformat=]
Signed-off-by: Tom Rini <trini@konsulko.com>
---
drivers/usb/gadget/f_fastboot.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c
index 199621d9f540..f3382a965bed 100644
--- a/drivers/usb/gadget/f_fastboot.c
+++ b/drivers/usb/gadget/f_fastboot.c
@@ -561,7 +561,7 @@ static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req)
puts("Booting kernel..\n");
- sprintf(boot_addr_start, "0x%lx", CONFIG_FASTBOOT_BUF_ADDR);
+ sprintf(boot_addr_start, "0x%lx", (long)CONFIG_FASTBOOT_BUF_ADDR);
do_bootm(NULL, 0, 2, bootm_args);
/* This only happens if image is somehow faulty so we start over */
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [U-Boot] [PULL] u-boot-usb/master
2017-08-21 9:32 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
2017-08-22 20:49 ` [U-Boot] [PATCH] fastboot: Ensure we treat CONFIG_FASTBOOT_BUF_ADDR as long Tom Rini
@ 2017-08-22 20:53 ` Tom Rini
1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2017-08-22 20:53 UTC (permalink / raw)
To: u-boot
On Mon, Aug 21, 2017 at 11:32:42AM +0200, Marek Vasut wrote:
> The following changes since commit 2d7cb5b426e7e0cdf684d7f8029ad132d7a8d383:
>
> env: Replace all open-coded gd->env_valid values with ENV_ flags
> (2017-08-20 19:27:44 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-usb.git master
>
> for you to fetch changes up to 5bf4475f1d7726541edec0060c6461fbb37db02d:
>
> doc: license: Add license header to the README.dfutftp file
> (2017-08-21 11:31:11 +0200)
>
Applied to u-boot/master, thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170822/a887b6d5/attachment.sig>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-22 20:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-21 9:32 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
2017-08-22 20:49 ` [U-Boot] [PATCH] fastboot: Ensure we treat CONFIG_FASTBOOT_BUF_ADDR as long Tom Rini
2017-08-22 20:53 ` Tom Rini
2017-08-22 20:53 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.