1
0

Accepting request 570504 from Base:System

- Update to kernel headers 4.15
- Add support for riscv (forwarded request 570503 from Andreas_Schwab)

OBS-URL: https://build.opensuse.org/request/show/570504
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=60
This commit is contained in:
Dominique Leuenberger 2018-02-03 14:37:13 +00:00 committed by Git OBS Bridge
commit a4198da02e
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
@ -132,8 +132,9 @@ case "$(uname -m)" in
parisc) asm_link=parisc ;; parisc) asm_link=parisc ;;
*mips*) asm_link=mips ;; *mips*) asm_link=mips ;;
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
@ -165,8 +166,9 @@ case "$(uname -m)" in
parisc) asm_link=parisc ;; parisc) asm_link=parisc ;;
*mips*) asm_link=mips ;; *mips*) asm_link=mips ;;
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