Accepting request 570503 from home:Andreas_Schwab:Factory

- Update to kernel headers 4.15
- Add support for riscv

OBS-URL: https://build.opensuse.org/request/show/570503
OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=121
This commit is contained in:
Andreas Schwab 2018-01-29 10:26:24 +00:00 committed by Git OBS Bridge
parent 4d0f102265
commit c4dd732ea5
4 changed files with 17 additions and 9 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:317d8e45cb51d5efbccf16bbcf055d5a8f7577bb5a755d25e296021c7d83b0a4
size 1150728

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b365fa0d682cc516c48118c812fa03360ce0876ed98d8c4a66ebc39c2f506e67
size 1175304

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de
- Update to kernel headers 4.15
- Add support for riscv
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package linux-glibc-devel # spec file for package linux-glibc-devel
# #
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -21,7 +21,7 @@ Summary: Linux headers for userspace development
License: GPL-2.0 License: GPL-2.0
Group: Development/Libraries/C and C++ Group: Development/Libraries/C and C++
BuildArch: noarch BuildArch: noarch
Version: 4.14 Version: 4.15
Release: 0 Release: 0
Url: http://www.kernel.org/ Url: http://www.kernel.org/
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -134,6 +134,7 @@ case "$(uname -m)" in
sparc*) asm_link=sparc ;; sparc*) asm_link=sparc ;;
aarch64) asm_link=arm64 ;; aarch64) asm_link=arm64 ;;
m68k) asm_link=m68k ;; m68k) asm_link=m68k ;;
riscv*) asm_link=riscv ;;
*) asm_link=x86 ;; *) asm_link=x86 ;;
esac esac
if test -L usr/include/asm if test -L usr/include/asm
@ -167,6 +168,7 @@ case "$(uname -m)" in
sparc*) asm_link=sparc ;; sparc*) asm_link=sparc ;;
aarch64) asm_link=arm64 ;; aarch64) asm_link=arm64 ;;
m68k) asm_link=m68k ;; m68k) asm_link=m68k ;;
riscv*) asm_link=riscv ;;
*) asm_link=x86 ;; *) asm_link=x86 ;;
esac esac
ln -sfn arch-$asm_link/asm usr/include/asm ln -sfn arch-$asm_link/asm usr/include/asm