diff options
| author | Matthias Weisser <weisserm@arcor.de> | 2011-11-29 12:16:40 +0100 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2011-12-10 17:54:04 -0500 | 
| commit | d99a6874f5397955e1d6cb3098ab274d0836109f (patch) | |
| tree | 437afdf789a66e6bb05edacce7c4bcdfe2cd5641 /arch/sandbox/cpu/cpu.c | |
| parent | 21899b10850b8ba155b16038fac5dd8d98214842 (diff) | |
| download | olio-uboot-2014.01-d99a6874f5397955e1d6cb3098ab274d0836109f.tar.xz olio-uboot-2014.01-d99a6874f5397955e1d6cb3098ab274d0836109f.zip | |
sandbox: Add timer simulation
Making sleep command work
Signed-off-by: Matthias Weisser <weisserm@arcor.de>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/sandbox/cpu/cpu.c')
| -rw-r--r-- | arch/sandbox/cpu/cpu.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index c7bf8a915..d7684d38e 100644 --- a/arch/sandbox/cpu/cpu.c +++ b/arch/sandbox/cpu/cpu.c @@ -34,12 +34,12 @@ int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  /* delay x useconds */  void __udelay(unsigned long usec)  { -	/* Ignore this for now */ +	os_usleep(usec);  }  unsigned long timer_get_us(void)  { -	return 0; +	return os_get_nsec() / 1000;  }  int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) |