index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-02 | Clean up graphics driver output | Dylan Taylor | |
2021-06-02 | Fix my Quadro T1000 not being detected | Dylan Taylor | |
2021-06-02 | Add hardware logging to beginning of installation | Dylan Taylor | |
2021-06-02 | Add additional hardware functions | Dylan Taylor | |
2021-06-02 | Remove line explaining desktop profile | Dylan Taylor | |
2021-06-02 | Add description to profile listing | Dylan Taylor | |
2021-05-31 | Remove comment that no longer applies | Dylan M. Taylor | |
2021-05-31 | Merge pull request #531 from Kibouo/master | Anton Hvornum | |
Fix typo in error msg | |||
2021-05-31 | Moved return logic to not abort the iteration of kernels. | Anton Hvornum | |
2021-05-31 | Fixed a plugin issue where there are no plugins found. | Anton Hvornum | |
2021-05-31 | Creating multiple boot configs, based on the selected kernels. Not 100% sure ↵ | Anton Hvornum | |
both initramfs and vmlinuz will have the trailing definitions, but made both {kernel} | |||
2021-05-31 | Creating PR | Anton Hvornum | |
2021-05-30 | Fix typo in error msg | Csonka Mihaly | |
2021-05-28 | Pulled in latest master changes | Anton Hvornum | |
2021-05-27 | Fix is_vm detection on real hardware | Dylan Taylor | |
2021-05-27 | Change ordering of example profiles | Dylan M. Taylor | |
2021-05-27 | made it more clear | nullrequest | |
using Redecorating's suggestion in the discord | |||
2021-05-27 | Make it more clear what the desktop profile does | nullrequest | |
2021-05-24 | Added a number of on_<event> hooks for different stages of the installation. | Anton Hvornum | |
2021-05-24 | Added/moved comments. | Anton Hvornum | |
2021-05-24 | Added optional version handling. And improved error handling a bit. | Anton Hvornum | |
2021-05-24 | Added a comment | Anton Hvornum | |
2021-05-24 | Added better error handling. | Anton Hvornum | |
2021-05-24 | Implemented load_plugin() which handles local or remote paths. Also added ↵ | Anton Hvornum | |
some error handling surrounding the loading of plugins. | |||
2021-05-24 | Spelling error | Anton Hvornum | |
2021-05-24 | Spelling error | Anton Hvornum | |
2021-05-24 | Switched plugin strategty. Now uses built-in entrypoints to source and load ↵ | Anton Hvornum | |
the plugins. This is the default method provided by Python, and is the cleanest so far I think. | |||
2021-05-24 | Syncing in latest changes from master | Anton Hvornum | |
2021-05-23 | Fixes #489 | Anton Hvornum | |
2021-05-23 | Spelling error | Anton Hvornum | |
2021-05-22 | Forgot an important import. | Anton Hvornum | |
2021-05-22 | Fixes docstrings. | Anton Hvornum | |
2021-05-22 | Re-worked the select_profile() user interaction. It no longer takes options ↵ | Anton Hvornum | |
as a parameter, instead it sources the profiles available, prints a curated list but allows for any input that is a valid profile. | |||
2021-05-22 | Since SysCommand() wraps SysCommandWorker(), but SysCommand() doesn't use ↵ | Anton Hvornum | |
contexts, we have to flush the output manually here to avoid newlines not being before the next output. | |||
2021-05-22 | fixed bootloader flag not being set | advaithm | |
2021-05-21 | Merge pull request #495 from dylanmtaylor/patch-1 | Anton Hvornum | |
Add ArchInstall user-agent to mirror requests | |||
2021-05-21 | Merge pull request #485 from dylanmtaylor/post-installation-scripts | Anton Hvornum | |
Implement post-installation commands | |||
2021-05-20 | Add ArchInstall user-agent to mirror requests | Dylan M. Taylor | |
2021-05-20 | Use {installation.target} in custom commands handler | Dylan Taylor | |
2021-05-20 | Extract custom-commands function into general.py | Dylan Taylor | |
2021-05-20 | Use pure Python code in filter_mirrors_by_region | JakobDev | |
2021-05-20 | Merge pull request #488 from SimonPe/patch-1 | Anton Hvornum | |
look for default profiles in correct location | |||
2021-05-20 | look for default profiles in correct location | Simon Peeters | |
The default `profiles` directory is a sibling of the `lib` directory, not of `storage.py` itself. | |||
2021-05-19 | very minor whitespace fixes | Dylan Taylor | |
2021-05-19 | Added support for getting configuration from a config file (#364) | Yash Tripathi | |
* added support for ingesting config * fixed condition to check key in dictionary * Removed redundant code, profile and desktop keys are now optional * Added base-config.json and support for pulling credentials from .env * added base config file and env file for users credentials * added silent install switch * added python-dotenv as a dependency * Updated Readme to include argparse changes as well as config ingestion * Updated Readme to include argparse changes as well as config ingestion * fixed typo in pyproject.toml * Replaced the magic __builtin__ global variable. This should fix mypy complaints while still retaining the same functionality, kinda. It's less automatic but it's also less of dark magic, which makes sense for anyone but me. * Fixes string index error. * Quotation error. * fixed initializing --script argument * added python-dotenv as a dependency * Installation can't be silent if config is not passed * fixed silent install help * fixed condition for ask_user_questions * reverted to creating profile object properly * Cleaned up and incorporated suggestions * added Profile import * added condition if Profile is null * fixed condition * updated parsing vars from argparse * removed loading users from .env * Reworking SysCommand & Moving to localectl for locale related activities (#4) * Moving to `localectl` rather than local file manipulation *(both for listing locales and setting them)*. * Swapped `loadkeys` for localectl. * Renamed `main` to `maim` in awesome profile. * Created `archinstall.Boot(<installation>)` which spawns a `systemd-nspawn` container against the installation target. * Exposing systemd.py's internals to archinstall global scope. * Re-worked `SysCommand` completely, it's now a wrapper for `SysCommandWorker` which supports interacting with the process in a different way. `SysCommand` should behave just like the old one, for backwards compatibility reasons. This fixes #68 and #69. * `SysCommand()` now has a `.decode()` function that defaults to `UTF-8`. * Adding back peak_output=True to pacstrap. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> Co-authored-by: Dylan Taylor <dylan@dylanmtaylor.com> Co-authored-by: Anton Hvornum <anton@hvornum.se> Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> * fixed indent * removed redundant import * removed duplicate import * removed duplicate import Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> Co-authored-by: Anton Hvornum <anton@hvornum.se> Co-authored-by: Dylan M. Taylor <dylan@dylanmtaylor.com> | |||
2021-05-19 | Reworking SysCommand & Moving to localectl for locale related activities | Anton Hvornum | |
* Moving to `localectl` rather than local file manipulation *(both for listing locales and setting them)*. * Swapped `loadkeys` for localectl. * Renamed `main` to `maim` in awesome profile. * Created `archinstall.Boot(<installation>)` which spawns a `systemd-nspawn` container against the installation target. * Exposing systemd.py's internals to archinstall global scope. * Re-worked `SysCommand` completely, it's now a wrapper for `SysCommandWorker` which supports interacting with the process in a different way. `SysCommand` should behave just like the old one, for backwards compatibility reasons. This fixes #68 and #69. * `SysCommand()` now has a `.decode()` function that defaults to `UTF-8`. * Adding back peak_output=True to pacstrap. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> Co-authored-by: Dylan Taylor <dylan@dylanmtaylor.com> | |||
2021-05-18 | Proofreading: Fix misc. spelling and grammar issues | Dylan Taylor | |
2021-05-18 | Remove unreachable code | Dylan M. Taylor | |
2021-05-18 | Remove PermissionError since it shadows the built-in of the same name | Dylan M. Taylor | |
2021-05-18 | Merge pull request #468 from dylanmtaylor/patch-3 | Anton Hvornum | |
Add missing urllib.error import |