index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-06 | Merge pull request #623 from conqp/clean_hardware_imports | Anton Hvornum | |
Remove unused import of json | |||
2021-09-06 | Merge pull request #626 from conqp/refactor_meminfo | Anton Hvornum | |
Refactor meminfo() to allow direct key access | |||
2021-09-06 | Merge pull request #625 from conqp/fix_tab_indentation | Anton Hvornum | |
Fix indentation with tabs instead of spaces | |||
2021-09-06 | Fix indentation with tabs instead of spaces | Richard Neumann | |
2021-09-06 | Refactor meminfo() to allow direct key access | Richard Neumann | |
2021-09-06 | Remove unused import of json | Richard Neumann | |
2021-09-06 | Refactor cpu_model() to use cpuinfo() | Richard Neumann | |
2021-09-06 | Refactor cpu_vendor() to use cpuinfo() | Richard Neumann | |
2021-09-06 | Merge branch 'master' into native_cpu_detection | Anton Hvornum | |
2021-09-06 | Merge pull request #605 from CYPT71/patch-1 | Anton Hvornum | |
Update hardware.py | |||
2021-09-06 | Added exception handling to check_output | Anton Hvornum | |
I tweaked the optimized return of check_output. Worth mentioning that `check_output()` will raise an exception `subprocess.CalledProcessError: Command 'lscpu | grep AMD' returned non-zero exit status 1.`. | |||
2021-09-06 | No need for try/catch any longer. | Anton Hvornum | |
The old behavior of SysCommand was that exit codes raised an exception, which needed to be handled by each individual caller. We now utilize `.exit_code` instead to manually detect faulty commands and raise exceptions where needed. | |||
2021-08-20 | Remove excess newline | Richard Neumann | |
2021-08-20 | Rewrite CPU vendor detection functions | Richard Neumann | |
Use cpuinfo() function rather than a subprocess. | |||
2021-08-20 | Add cpuinfo() | Richard Neumann | |
2021-07-22 | Update hardware.py | CYPT71 | |
Rewrite some function if condition is True then return true else return false, transform in return condition directly Also I don't understand why we need a try/except at line 151 and why we not write return condition ?? | |||
2021-07-16 | Replace for loops with comprehensions | monosans | |
2021-06-09 | Split Nvidia so that there are two options for it | Dylan M. Taylor | |
This makes selecting an Nvidia driver simpler and makes it apparent that we support both open-source and proprietary from the initial selection. | |||
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-05-27 | Fix is_vm detection on real hardware | Dylan Taylor | |
2021-05-18 | Compliment to #461 and #459: is_vm() also outputted 'kvm'. This should fix that. | Anton Hvornum | |
2021-05-18 | Converted from subprocess.check_output() to SysCommand() to hide ↵ | Anton Hvornum | |
cpu_vendor() output. | |||
2021-05-15 | Perform refactoring to PEP 8 naming conventions | Dylan Taylor | |
2021-05-15 | f-string fixes | Dylan Taylor | |
2021-05-15 | Whitespace changes | Dylan Taylor | |
2021-05-15 | Some additional formatting | Dylan Taylor | |
2021-05-15 | Many more manual changes | Dylan Taylor | |
2021-05-12 | some type hint fixes and a bad catch fix | advaithm | |
2021-05-05 | Change graphics driver selection based on #414 | Dylan Taylor | |
2021-04-29 | typo: none 0 is incorrect grammar | Dylan M. Taylor | |
2021-04-29 | Cleaning up packages. (#374) | Anton Hvornum | |
* Cleaning up packages. installer now relies on __packages__ definition. Which will work with external libs to more easily gather packages used by installer and profiles. * Added back the logic for the log message, where we inform if we're adding the boot loader to root or boot. * Added __package__ definition to profiles and the installer. These packages can be used as an indication from outside libraries of what could *possibly* be installed. For instance an offline-tool could source these, it would source more than it needed to, but it would give a quick rundown of what might be needed. * Removed import of __base__packages__ as it's now just __packages__ after a lot of stream-lining. * Explosion misspelling. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com> | |||
2021-04-11 | Use generic_select for GPU driver | Dylan Taylor | |
Make it so there isn't a space in the key Try to simplify things more | |||
2021-04-11 | Fixed PR #273. Moved the graphic drivers into hardware since they are ↵ | Anton Hvornum | |
hardware specific, in the long run maybe we move them into 'drivers' or something. And moved the user interaction from gfx_drivers into user_interactions. And removed the import from installer.py to __init__.py since we don't want to import 'global functions' in extension imports. | |||
2021-04-07 | added isVM function | advaithm | |
2021-04-07 | added hasIntelCPU | advaithm | |
2021-04-07 | added return value for functions in hardware.py plus cpuVendor function | advaithm | |
2021-04-02 | Merging master into feature branch. | Anton Hvornum | |
2021-04-01 | Simplify boolean checks | Richard Neumann | |
2021-03-12 | add function to check cpu vendor to allow for cpu specific command line ↵ | advaithm | |
arguments | |||
2021-01-25 | Added some basic/crude graphics checks in hardware.py | Anton Hvornum | |
2021-01-25 | Created an embryo for hardware detection. Supports detecting WiFi and UEFI. ↵ | Anton Hvornum | |
This fixes #44 and is a start for #82. |