diff options
author | Simon Glass | 2021-11-24 09:26:46 -0700 |
---|---|---|
committer | Simon Glass | 2021-12-05 09:26:26 -0700 |
commit | 36cc7bfd54cf104a13bd0a6a5cd43e146547ce6b (patch) | |
tree | e76ebfb080f3e64cc2fefdda608ec8af9e8c86db /include | |
parent | 6ce2237a4076a323e6dcaa92c6f22a149fef6f28 (diff) |
sandbox: Drop CONFIG_SYS_TIMER_RATE
This is not used by sandbox since it uses driver model for the timer.
Drop it.
Also update the tools_only build to avoid build errors, since it does
actually build U-Boot too. Enable DM so we can use CONFIG_TIMER,
disable EFI_LOADER to avoid an error about board_quiesce_devices() and
disable NET to avoid having to define CONFIG_AVB_BUF_ADDR
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/sandbox.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index d0adcfd75ee..0458c72360b 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -10,10 +10,6 @@ #define CONFIG_IO_TRACE #endif -#ifndef CONFIG_TIMER -#define CONFIG_SYS_TIMER_RATE 1000000 -#endif - #define CONFIG_MALLOC_F_ADDR 0x0010000 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |