From 9d4c9d769e976ef6c4d0a1513cc26e3a8d2d37d1 Mon Sep 17 00:00:00 2001 From: Qi Yadong Date: Mon, 23 Jul 2018 13:21:13 +0800 Subject: [PATCH] HV: stop retrieving seed from multiboot modules In future, SBL will no longer provide seed_list address through multiboot modules. The seed_list address will passed by cmdline instead. So stop retrieveing seed from multiboot modules. Signed-off-by: Qi Yadong Reviewed-by: Wang Kai Acked-by: Zhu Bing --- hypervisor/boot/sbl/multiboot.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/hypervisor/boot/sbl/multiboot.c b/hypervisor/boot/sbl/multiboot.c index 5d6480e21..abd5af9a2 100644 --- a/hypervisor/boot/sbl/multiboot.c +++ b/hypervisor/boot/sbl/multiboot.c @@ -90,8 +90,6 @@ static void parse_other_modules(struct vm *vm, vm->sw.linux_info.ramdisk_load_addr = (void *)(uint64_t)mods[i].mm_mod_start; vm->sw.linux_info.ramdisk_size = mod_size; - } else if (strncmp("SeedList", start, type_len) == 0) { - parse_seed_list((struct seed_list_hob *)mod_addr); } else { pr_warn("not support mod, cmd: %s", start); }