mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
pc-bios/s390-ccw: Move string arrays from bootmap header to .c file
bootmap.h can currently only be included once - otherwise the linker complains about multiple definitions of the "magic" strings. It's a bad style to define string arrays in header files, so let's better move these to the bootmap.c file instead where they are used. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <1520317081-5341-1-git-send-email-thuth@redhat.com> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
1ffed98f24
commit
6af978ae8b
2 changed files with 20 additions and 19 deletions
|
@ -37,6 +37,26 @@ typedef struct ResetInfo {
|
|||
|
||||
static ResetInfo save;
|
||||
|
||||
const uint8_t el_torito_magic[] = "EL TORITO SPECIFICATION"
|
||||
"\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
|
||||
|
||||
/*
|
||||
* Match two CCWs located after PSW and eight filler bytes.
|
||||
* From libmagic and arch/s390/kernel/head.S.
|
||||
*/
|
||||
const uint8_t linux_s390_magic[] = "\x02\x00\x00\x18\x60\x00\x00\x50\x02\x00"
|
||||
"\x00\x68\x60\x00\x00\x50\x40\x40\x40\x40"
|
||||
"\x40\x40\x40\x40";
|
||||
|
||||
static inline bool is_iso_vd_valid(IsoVolDesc *vd)
|
||||
{
|
||||
const uint8_t vol_desc_magic[] = "CD001";
|
||||
|
||||
return !memcmp(&vd->ident[0], vol_desc_magic, 5) &&
|
||||
vd->version == 0x1 &&
|
||||
vd->type <= VOL_DESC_TYPE_PARTITION;
|
||||
}
|
||||
|
||||
static void jump_to_IPL_2(void)
|
||||
{
|
||||
ResetInfo *current = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue