feat(live): add a kiwi variant which includes only the minimal software to run Agama#2256
Conversation
* It includes only the software that is required to use Agama remotely.
This reverts commit 28d3de1. Rather remove the kernel drivers, the related firmware is removed automatically by a script.
Contributor
|
My changes reduced the mini PXE image from 419MB to 343MB (x86_64), mostly by dropping GPU, Wifi and Bluetooth drivers. |
jreidinger
reviewed
Apr 11, 2025
| systemctl enable setup-systemd-proxy-env.path | ||
| systemctl enable x11-autologin.service | ||
| systemctl enable spice-vdagentd.service | ||
| test -f /usr/lib/systemd/system/spice-vdagentd.service && systemctl enable spice-vdagentd.service |
Contributor
There was a problem hiding this comment.
I kind of expect that identical thing should happen to qemu-guest-agent..and also x11-autologin
Contributor
Author
There was a problem hiding this comment.
No, because the files are still there. We drop the spice-vdagentd because it introduced some dependencies, even on gtk.
jreidinger
approved these changes
Apr 11, 2025
Merged
imobachgs
added a commit
that referenced
this pull request
Apr 22, 2025
Prepare to release Agama 14: * #1994 * #2041 * #2103 * #2178 * #2189 * #2200 * #2205 * #2209 * #2212 * #2213 * #2214 * #2215 * #2216 * #2217 * #2219 * #2220 * #2224 * #2225 * #2226 * #2227 * #2228 * #2230 * #2231 * #2232 * #2233 * #2235 * #2237 * #2239 * #2241 * #2242 * #2244 * #2245 * #2246 * #2247 * #2248 * #2249 * #2250 * #2251 * #2252 * #2253 * #2254 * #2255 * #2256 * #2257 * #2259 * #2260 * #2262 * #2265 * #2266 * #2268 * #2269 * #2271 * #2272 * #2273 * #2275 * #2276 * #2278 * #2281
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The PXE image is too big and it is not possible to use it on a system with 2GiB of RAM. It must include a minimal desktop and a browser, which takes quite some space.
However, in many situations the system can be installed remotely or using the CLI. For those scenario, we should offer an smaller PXE image that does not include the desktop stack.
Solution
Split the main list of packages in two:
Additionally, the MINI image does not contain:
Warning
This PR conflicts with the switch to Wayland (#1868), but it can be adapted later. The same approach still applies.