From: Jan Remmet <j.remmet@phytec.de>
To: barebox@lists.infradead.org
Subject: [PATCH] ARM: am33xx: netboot use ramfs
Date: Mon, 6 Jul 2015 08:55:26 +0200 [thread overview]
Message-ID: <1436165726-33606-1-git-send-email-j.remmet@phytec.de> (raw)
Older tftp server don't send the file size.
Then tftpfs needs temporary place to store the file.
mount ramfs and then tftpfs in a own mount point
Signed-off-by: Jan Remmet <j.remmet@phytec.de>
Tested-by: Wadim Egorov <w.egorov@phytec.de>
---
arch/arm/mach-omap/Kconfig | 1 +
arch/arm/mach-omap/xload.c | 30 ++++++++++++++++++++++++++----
2 files changed, 27 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-omap/Kconfig b/arch/arm/mach-omap/Kconfig
index af35975..aeed79f 100644
--- a/arch/arm/mach-omap/Kconfig
+++ b/arch/arm/mach-omap/Kconfig
@@ -106,6 +106,7 @@ config AM33XX_NET_BOOT
bool "enable AM335x network boot"
select ENVIRONMENT_VARIABLES
select NET_DHCP
+ select FS_RAMFS
select FS_TFTP
select DRIVER_NET_CPSW
default n
diff --git a/arch/arm/mach-omap/xload.c b/arch/arm/mach-omap/xload.c
index 4a0714e..b0ce1d6 100644
--- a/arch/arm/mach-omap/xload.c
+++ b/arch/arm/mach-omap/xload.c
@@ -229,13 +229,16 @@ static void *omap_serial_boot(void){
return buf;
}
+#define TFTP_MOUNT "/.tftp"
+
static void *am33xx_net_boot(void)
{
void *buf = NULL;
int err;
int len;
struct dhcp_req_param dhcp_param;
- const char *bootfile;
+ const char *bootfile, *ip;
+ char *file;
am33xx_register_ethaddr(0, 0);
@@ -247,7 +250,22 @@ static void *am33xx_net_boot(void)
return NULL;
}
- err = mount(ip_to_string(net_get_serverip()), "tftp", "/", NULL);
+ /*
+ * Older tftp server don't send the file size.
+ * Then tftpfs needs temporary place to store the file.
+ */
+ err = mount("none", "ramfs", "/", NULL);
+ if (err < 0) {
+ printf("failed to mount ramfs\n");
+ return NULL;
+ }
+
+ err = make_directory(TFTP_MOUNT);
+ if (err)
+ return NULL;
+
+ ip = ip_to_string(net_get_serverip());
+ err = mount(ip, "tftp", TFTP_MOUNT, NULL);
if (err < 0) {
printf("Unable to mount.\n");
return NULL;
@@ -259,11 +277,15 @@ static void *am33xx_net_boot(void)
return NULL;
}
- buf = read_file(bootfile, &len);
+ file = asprintf("%s/%s", TFTP_MOUNT, bootfile);
+
+ buf = read_file(file, &len);
if (!buf)
printf("could not read %s.\n", bootfile);
- umount("/");
+ free(file);
+
+ umount(TFTP_MOUNT);
return buf;
}
--
1.9.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2015-07-06 6:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-06 6:55 Jan Remmet [this message]
2015-07-08 6:24 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1436165726-33606-1-git-send-email-j.remmet@phytec.de \
--to=j.remmet@phytec.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox