|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] arm: use module provided command line for domain 0 command line
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1358772031 0
# Node ID 002f86162d7e836acc2a00966cc1dc0ab36c2de2
# Parent 55f10b71880a50f52ad02f4658bc28825af0fb81
arm: use module provided command line for domain 0 command line
Fallback to xen,dom0-bootargs if this isn't present.
Ideally this would use module1-args iff the kernel came from the
modules and the existing xen,dom0-bootargs if the kernel came from
flash, but this approach is simpler and has the same effect in
practice.
Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
Acked-by: Tim Deegan <tim@xxxxxxx>
Committed-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
diff -r 55f10b71880a -r 002f86162d7e xen/arch/arm/domain_build.c
--- a/xen/arch/arm/domain_build.c Mon Jan 21 12:40:30 2013 +0000
+++ b/xen/arch/arm/domain_build.c Mon Jan 21 12:40:31 2013 +0000
@@ -86,8 +86,13 @@ static int write_properties(struct domai
int node, const char *name, int depth,
u32 address_cells, u32 size_cells)
{
+ const char *bootargs = NULL;
int prop;
+ if ( early_info.modules.nr_mods >= 1 &&
+ early_info.modules.module[1].cmdline[0] )
+ bootargs = &early_info.modules.module[1].cmdline[0];
+
for ( prop = fdt_first_property_offset(fdt, node);
prop >= 0;
prop = fdt_next_property_offset(fdt, prop) )
@@ -104,15 +109,22 @@ static int write_properties(struct domai
prop_len = fdt32_to_cpu(p->len);
/*
- * In chosen node: replace bootargs with value from
- * xen,dom0-bootargs.
+ * In chosen node:
+ *
+ * * remember xen,dom0-bootargs if we don't already have
+ * bootargs (from module #1, above).
+ * * remove bootargs and xen,dom0-bootargs.
*/
if ( device_tree_node_matches(fdt, node, "chosen") )
{
if ( strcmp(prop_name, "bootargs") == 0 )
continue;
- if ( strcmp(prop_name, "xen,dom0-bootargs") == 0 )
- prop_name = "bootargs";
+ else if ( strcmp(prop_name, "xen,dom0-bootargs") == 0 )
+ {
+ if ( !bootargs )
+ bootargs = prop_data;
+ continue;
+ }
}
/*
* In a memory node: adjust reg property.
@@ -147,6 +159,14 @@ static int write_properties(struct domai
xfree(new_data);
}
+ if ( device_tree_node_matches(fdt, node, "chosen") && bootargs )
+ fdt_property(kinfo->fdt, "bootargs", bootargs, strlen(bootargs) + 1);
+
+ /*
+ * XXX should populate /chosen/linux,initrd-{start,end} here if we
+ * have module[2]
+ */
+
if ( prop == -FDT_ERR_NOTFOUND )
return 0;
return prop;
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |