Searched refs:bootargs (Results 1 – 2 of 2) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/ |
| D | MachineExtensions.cs | 41 …public static void LoadAtags(this IBusController bus, String bootargs, uint memorySize, uint begin… in LoadAtags() argument 43 var atags = Misc.CreateAtags(bootargs, memorySize); in LoadAtags() 53 … LoadFdt(this IBusController sysbus, string file, ulong address, string bootargs = null, bool appe… in LoadFdt() argument 61 if(bootargs == null) in LoadFdt() 82 bootargs = oldBootargs + bootargs; in LoadFdt() 84 if(oldBootargs != bootargs) in LoadFdt() 86 sysbus.DebugLog("Bootargs altered from '{0}' to '{1}'.", oldBootargs, bootargs); in LoadFdt() 88 bootargsProperty.PutDataAsString(bootargs); in LoadFdt()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | Misc.cs | 35 public static List<UInt32> CreateAtags(string bootargs, uint memorySize) in CreateAtags() argument 48 (uint)((bootargs.Length >> 2) + 3), in CreateAtags() 55 bootargsByte.AddRange(ascii.GetBytes(bootargs)); in CreateAtags() 57 if((bootargs.Length % 4) != 0) in CreateAtags() 59 for(i = 0; i < (4 - (bootargs.Length%4)); i++) in CreateAtags()
|