~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to hw/nvram.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2009-03-22 10:13:17 UTC
  • mfrom: (1.2.1 upstream) (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090322101317-iigjtnu5qil35dtb
Tags: 0.10.1-1
[ Aurelien Jarno ]
* New upstream stable release:
  - patches/80_stable-branch.patch: remove.
* debian/control: 
  - Remove depends on proll.
  - Move depends on device-tree-compiler to build-depends.
  - Bump Standards-Version to 3.8.1 (no changes).
* patches/82_qemu-img_decimal.patch: new patch from upstream to make
  qemu-img accept sizes with decimal values (closes: bug#501400).

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
void NVRAM_set_lword (nvram_t *nvram, uint32_t addr, uint32_t value);
18
18
uint32_t NVRAM_get_lword (nvram_t *nvram, uint32_t addr);
19
19
void NVRAM_set_string (nvram_t *nvram, uint32_t addr,
20
 
                       const unsigned char *str, uint32_t max);
 
20
                       const char *str, uint32_t max);
21
21
int NVRAM_get_string (nvram_t *nvram, uint8_t *dst, uint16_t addr, int max);
22
22
void NVRAM_set_crc (nvram_t *nvram, uint32_t addr,
23
23
                    uint32_t start, uint32_t count);
24
24
int PPC_NVRAM_set_params (nvram_t *nvram, uint16_t NVRAM_size,
25
 
                          const unsigned char *arch,
 
25
                          const char *arch,
26
26
                          uint32_t RAM_size, int boot_device,
27
27
                          uint32_t kernel_image, uint32_t kernel_size,
28
28
                          const char *cmdline,