diff options
| author | Andrea Adami <andrea.adami@gmail.com> | 2013-05-13 01:22:23 +0200 |
|---|---|---|
| committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-05-13 09:50:24 +0100 |
| commit | 97957e5cee9a797d3e05c1a8848338a033f40770 (patch) | |
| tree | 59351568b51e711b80ca3fff348e61d9079eaf01 /meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch | |
| parent | 06318f320803814ac7f2827473a8e46a8eb0d8cb (diff) | |
| download | meta-openembedded-97957e5cee9a797d3e05c1a8848338a033f40770.tar.gz | |
kexec-tools-klibc_2.0.2: refactor and extend patches for building
* some old patches apparently unneeded have been removed
* patches are now better split
* fix build for x86 and x86-64
* tested with qemuarm, qemuppc, qemumips, qemux86, qemux86-64
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Diffstat (limited to 'meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch')
| -rw-r--r-- | meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch new file mode 100644 index 0000000000..200fb1dd9e --- /dev/null +++ b/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc-2.0.2/x86_basename.patch | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | --- a/kexec/arch/i386/x86-linux-setup.c | ||
| 2 | +++ b/kexec/arch/i386/x86-linux-setup.c | ||
| 3 | @@ -280,9 +280,9 @@ static int add_edd_entry(struct x86_linu | ||
| 4 | memset(edd_info, 0, sizeof(struct edd_info)); | ||
| 5 | |||
| 6 | /* extract the device number */ | ||
| 7 | - if (sscanf(basename(sysfs_name), "int13_dev%hhx", &devnum) != 1) { | ||
| 8 | + if (sscanf(strrchr(sysfs_name,'/') + 1, "int13_dev%hhx", &devnum) != 1) { | ||
| 9 | fprintf(stderr, "Invalid format of int13_dev dir " | ||
| 10 | - "entry: %s\n", basename(sysfs_name)); | ||
| 11 | + "entry: %s\n", strrchr(sysfs_name,'/') + 1); | ||
| 12 | return -1; | ||
| 13 | } | ||
| 14 | \ No newline at end of file | ||
