Sync from SUSE:SLFO:Main google-dracut-config revision feeb5395ce40f47089ed91292cda6978
This commit is contained in:
commit
db2c269809
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
BIN
google-dracut-config-0.0.4.tar.gz
(Stored with Git LFS)
Normal file
BIN
google-dracut-config-0.0.4.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
21
google-dracut-config.changes
Normal file
21
google-dracut-config.changes
Normal file
@ -0,0 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 8 19:56:15 UTC 2025 - Sean Marlow <sean.marlow@suse.com>
|
||||
|
||||
- Update to 0.0.4
|
||||
+ Move dracut config files to usr/lib/ dir
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 3 20:05:51 UTC 2025 - Sean Marlow <sean.marlow@suse.com>
|
||||
|
||||
- Update to 0.0.3
|
||||
+ Add provides and conflicts on generic name dracut-instance-change-config
|
||||
- Update to 0.0.2
|
||||
+ Rename config for nvme for consistency
|
||||
+ Add dracut build requirement
|
||||
+ Add virtio_net, virtio_rng and idpf drivers
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 3 19:22:35 UTC 2024 - Sean Marlow <sean.marlow@suse.com>
|
||||
|
||||
- Initial release v0.0.1 (PED-11572)
|
||||
|
74
google-dracut-config.spec
Normal file
74
google-dracut-config.spec
Normal file
@ -0,0 +1,74 @@
|
||||
#
|
||||
# spec file for package google-dracut-config
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
Name: google-dracut-config
|
||||
Version: 0.0.4
|
||||
Release: 0
|
||||
Summary: Google Dracut config overlay files
|
||||
License: Apache-2.0
|
||||
Group: System/Management
|
||||
URL: https://github.com/SUSE-Enceladus/google-dracut-config
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
BuildRequires: dracut
|
||||
Provides: dracut-instance-change-config
|
||||
Conflicts: otherproviders(dracut-instance-change-config)
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/07-ext4.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/07-ext4.conf
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/07-net.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/07-net.conf
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/07-nvme.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/07-nvme.conf
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/07-virtio.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/07-virtio.conf
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/07-xfs.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/07-xfs.conf
|
||||
install -D -m 644 usr/lib/dracut/dracut.conf.d/11-resume.conf \
|
||||
%{buildroot}/usr/lib/dracut/dracut.conf.d/11-resume.conf
|
||||
|
||||
%check
|
||||
|
||||
%post
|
||||
has_idpf=$(find /lib/modules -name 'idpf*.ko*')
|
||||
if [ -z "$has_idpf" ]; then
|
||||
sed -i s/idpf// /usr/lib/dracut/dracut.conf.d/07-net.conf
|
||||
fi
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%dir /usr/lib/dracut/
|
||||
%dir /usr/lib/dracut/dracut.conf.d/
|
||||
/usr/lib/dracut/dracut.conf.d/07-ext4.conf
|
||||
/usr/lib/dracut/dracut.conf.d/07-net.conf
|
||||
/usr/lib/dracut/dracut.conf.d/07-nvme.conf
|
||||
/usr/lib/dracut/dracut.conf.d/07-virtio.conf
|
||||
/usr/lib/dracut/dracut.conf.d/07-xfs.conf
|
||||
/usr/lib/dracut/dracut.conf.d/11-resume.conf
|
||||
|
||||
%changelog
|
Loading…
x
Reference in New Issue
Block a user