Displaying 5 results from an estimated 5 matches for "version0".
Did you mean:
version
2019 May 24
3
[PATCH] (vesa)menu.c32: Add support for BLS
...n title";
+
/* Empty refstring */
const char *empty_string;
@@ -1060,6 +1066,337 @@ do_include:
}
}
+/*
+ * https://systemd.io/BOOT_LOADER_SPECIFICATION
+ * #type-1-boot-loader-specification-entries
+ */
+struct blsdata {
+ const char *title;
+ const char *version;
+ char *version0; /* version string padded with zeros */
+ const char *machine_id;
+ const char *linux_;
+ const char *initrd;
+ const char *efi;
+ char *options;
+ const char *devicetree;
+ const char *architecture;
+ char *sort_field; /* used internally for sorting */
+ const char *file...
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...|| !fieldname)
+ return NULL;
+
+ if (strcmp(fieldname, "filename") == 0)
+ return bd->filename;
+ if (strcmp(fieldname, "title") == 0)
+ return bd->title;
+ if (strcmp(fieldname, "version") == 0)
+ return bd->version;
+ if (strcmp(fieldname, "version0") == 0)
+ return bd->version0;
+ if (strcmp(fieldname, "machine-id") == 0)
+ return bd->machine_id;
+ if (strcmp(fieldname, "linux") == 0)
+ return bd->freax;
+ if (strcmp(fieldname, "initrd") == 0)
+ return bd->initrd;
+ if (strcmp(fieldna...
2019 May 25
2
[PATCH] (vesa)menu.c32: Add support for BLS
...bd->title);
> > + bd->title = refstrdup(skipspace(p + 5));
> > + } else if (looking_at(p, "version")) {
> > + refstr_put(bd->version);
> > + bd->version = refstrdup(skipspace(p + 7));
> > + bd->version0 = padver(bd->version);
> > + } else if (looking_at(p, "machine-id")) {
> > + refstr_put(bd->machine_id);
> > + bd->machine_id = refstrdup(skipspace(p + 10));
> > + } else if (looking_at(p, "linux")) {
> >...
2019 May 25
0
[PATCH] (vesa)menu.c32: Add support for BLS
...+ refstr_put(bd->title);
> + bd->title = refstrdup(skipspace(p + 5));
> + } else if (looking_at(p, "version")) {
> + refstr_put(bd->version);
> + bd->version = refstrdup(skipspace(p + 7));
> + bd->version0 = padver(bd->version);
> + } else if (looking_at(p, "machine-id")) {
> + refstr_put(bd->machine_id);
> + bd->machine_id = refstrdup(skipspace(p + 10));
> + } else if (looking_at(p, "linux")) {
> + refstr_put(...
2019 May 27
0
[PATCH] (vesa)menu.c32: Add support for BLS
...> + bd->title = refstrdup(skipspace(p + 5));
> > > + } else if (looking_at(p, "version")) {
> > > + refstr_put(bd->version);
> > > + bd->version = refstrdup(skipspace(p + 7));
> > > + bd->version0 = padver(bd->version);
> > > + } else if (looking_at(p, "machine-id")) {
> > > + refstr_put(bd->machine_id);
> > > + bd->machine_id = refstrdup(skipspace(p + 10));
> > > + } else if (looking_at(p, "linux...