index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-01-25 | Added an embryo for listing wireless networks. | Anton Hvornum | |
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. | |||
2021-01-25 | Delete test.py | Anton Hvornum | |
2021-01-22 | Merge pull request #92 from grazzolini/change_arch_site | Anton Hvornum | |
Change Arch Linux site URL's | |||
2021-01-22 | Change Arch Linux site URL's | Giancarlo Razzolini | |
Recently Arch Linux shed the www portion of its site. The links still work, but it's a 301 redirection to archlinux.org. Changed all the URL's still pointing to www.archlinux.org to avoid the unnecessary redirection, since on browsers the 301 is usually saved and respected, but command line tools line wget or python might not save this and always go through the redirect. | |||
2021-01-22 | Merge pull request #89 from advaithm/master | Anton Hvornum | |
plasma wayland and xfs support | |||
2021-01-22 | Safety checks prohibited this from running | Anton Hvornum | |
The safety mechanism prevents the installation-code under `if __name__` to run when importing to check for the `_prep_function`. when the import for `_prep_function` check is executed it imports with a bogus `__name__` override. This is to protect anything under if `__name__` from running just to be able to import and run `_prep_function()`. After that is done and the actual installation begins, it imports with a proper `__name__`, The namespace is `filename` minus the `.extension` *(.py)*, normally imports of modules with dashes (`-`) in the name is prohibited, but archintall's import mechanism supports this as it's a string-import via `importlib`. So modified to `if __name__ == 'kde-wayland'` and that worked great : ) | |||
2021-01-22 | replced slef.part with self.partition | advaithm | |
2021-01-22 | fixed spaces in kde-wayland.py | advaithm | |
2021-01-22 | fixed spaces in kde-wayland.py | advaithm | |
2021-01-22 | fixex spaces in installer.py | advaithm | |
2021-01-22 | fixed tabs and spaces problem | advaithm | |
2021-01-22 | fixed tabs and spaces problem | advaithm | |
2021-01-22 | xfs as partition option | advaithm | |
2021-01-22 | plasma-wayland installer | advaithm | |
2021-01-21 | Fixes #88 - ext4 paritions incorrectly labeled | Anton Hvornum | |
2021-01-21 | Merge pull request #85 from j-james/master | Anton Hvornum | |
Spell "environment" correctly | |||
2021-01-21 | Merge pull request #87 from grazzolini/fix_networking | Anton Hvornum | |
examples/guided: Enable systemd-resolved | |||
2021-01-21 | examples/guided: Enable systemd-resolved | Giancarlo Razzolini | |
If we enable systemd-networkd and do not enable systemd-resolved, the installed system is left on a state where it has networking, but can resolve any hostnames. It is required to have systemd-resolved enabled if any .network file has a DNS entry or is using DHCP=yes. https://wiki.archlinux.org/index.php/Systemd-networkd#Required_services_and_setup | |||
2021-01-21 | Added nullrequest to the contributors list. | Anton Hvornum | |
2021-01-21 | Merge pull request #84 from advaithm/master | Anton Hvornum | |
reworked kde.py to use sddm instead of hacking xinitrc | |||
2021-01-21 | Spell "environment" correctly | j-james | |
2021-01-21 | reworked kde.py to use sddm instead of hacking xinitrc | advaithm | |
2021-01-20 | Merge pull request #79 from grazzolini/installation | Anton Hvornum | |
Change the documentation now that archinstall is on the official repo… | |||
2021-01-20 | Change the documentation now that archinstall is on the official repositories | Giancarlo Razzolini | |
Changed README.md to not use sudo pip anymore and point users to use pacman instead. We go into more detail on the docs. Changed binary.rst to point to the official repositories too. Changed python.rst to point to using the official repositories for the installation of both the archinstall script or for just installing the library (archinstall depends on python-archinstall). | |||
2021-01-20 | Updated hashsums to latest version: v2.1.0 | Anton Hvornum | |
2021-01-20 | Version bump. All future releases will now be PGP-signed. | Anton Hvornum | |
2021-01-19 | Expanded a shortening. | Anton Hvornum | |
2021-01-19 | Merge pull request #77 from Torxed/fix_typos | Anton Hvornum | |
Fix typos | |||
2021-01-19 | Expanded a shortening. | Anton Hvornum | |
2021-01-19 | Merging in master changes into grazzolini's typo fixes | Anton Hvornum | |
2021-01-19 | Fixed #76 and created PGP keys. | Anton Hvornum | |
2021-01-19 | Added a profile for alacritty as well as tweaked the awesome profile and ↵ | Anton Hvornum | |
application profile. | |||
2021-01-19 | Merge pull request #75 from grazzolini/fix_typos | Anton Hvornum | |
CONTRIBUTING: Fix typos | |||
2021-01-11 | CONTRIBUTING: Fix typos | Giancarlo Razzolini | |
Fixed some typos on the CONTRIBUTING.md document. | |||
2020-12-09 | Installer.mount() had accedental hard coded mountpoint. | Anton Hvornum | |
2020-12-07 | Removing debug output | Anton Hvornum | |
2020-12-07 | Fixing a strip glitch in `sys_command()` causing certain output to get ↵ | Anton Hvornum | |
truncated in unwanted places (like fstab) | |||
2020-12-07 | Minor tweaks | Anton Hvornum | |
2020-12-07 | More debugging | Anton Hvornum | |
2020-12-07 | Debug data | Anton Hvornum | |
2020-12-07 | Type mismatch in genfstab() | Anton Hvornum | |
2020-12-07 | Updated fstab to better match the given input | Anton Hvornum | |
2020-12-07 | fstab incorrectly updated since many version ago | Anton Hvornum | |
Updated `genfstab()` to approprately generate a correct fstab for mounted filesystems used in `installation.mountpoint`. | |||
2020-12-07 | Debugging | Anton Hvornum | |
2020-12-07 | Updated debug log output | Anton Hvornum | |
2020-12-07 | Added some more log output regarding fstab. | Anton Hvornum | |
2020-12-07 | Reverted genfstab changes. | Anton Hvornum | |
But placed genfstab in the Installation() __exit__ as the last action performed. | |||
2020-12-07 | Debugging | Anton Hvornum | |