Re: [U-Boot] [PATCH v2 1/1] efi_selftest: don't hang on missing timer

2018-11-15 Thread Auer, Lukas
On Wed, 2018-11-14 at 09:23 +0100, Alexander Graf wrote: > On 11/12/2018 08:57 PM, Heinrich Schuchardt wrote: > > qemu-riscv32_defconfig and qemu-riscv64_defconfig do not supply a > > timer. > > This causes the EFI selftest to hang on tests which require a > > timer. > > > > So let's disable CONFI

Re: [U-Boot] [PATCH v2 1/1] efi_selftest: don't hang on missing timer

2018-11-14 Thread Alexander Graf
On 11/12/2018 08:57 PM, Heinrich Schuchardt wrote: qemu-riscv32_defconfig and qemu-riscv64_defconfig do not supply a timer. This causes the EFI selftest to hang on tests which require a timer. So let's disable CONFIG_TIMER for these boards and use this variable to decide which tests have to be d

[U-Boot] [PATCH v2 1/1] efi_selftest: don't hang on missing timer

2018-11-12 Thread Heinrich Schuchardt
qemu-riscv32_defconfig and qemu-riscv64_defconfig do not supply a timer. This causes the EFI selftest to hang on tests which require a timer. So let's disable CONFIG_TIMER for these boards and use this variable to decide which tests have to be disabled. Signed-off-by: Heinrich Schuchardt --- v2: