-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62b7466
commit d2ac2f3
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[Partition] | ||
Type=root | ||
GrowFileSystem=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
project "pkg" { | ||
rpm { | ||
spec = "ultramarine-raw-filesystem.spec" | ||
sources = "." | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
ultramarine/ultramarine-raw-filesystem/ultramarine-raw-filesystem.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Name: ultramarine-raw-filesystem | ||
Version: 1.0 | ||
Release: 1%{?dist} | ||
Summary: systemd-repart config to automatically extend the root filesystem on raw images | ||
URL: ultramarine-linux.org | ||
Source0: 50-root.conf | ||
License: MIT | ||
BuildArch: noarch | ||
|
||
%description | ||
%{summary} | ||
|
||
%prep | ||
|
||
%build | ||
|
||
%install | ||
mkdir -p %{buildroot}/usr/lib/repart.d | ||
cp -v %{SOURCE0} %{buildroot}/usr/lib/repart.d | ||
|
||
|
||
%files | ||
/usr/lib/repart.d/* | ||
|
||
%changelog | ||
* Mon May 20 2024 Jaiden Riordan <[email protected]> | ||
- Initial commit |