Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
AgeCommit message (Collapse)Author
2021-04-07Add filtration on top level profileDylan Taylor
2021-04-07Merge pull request #217 from advaithm/torxed-v2.2.0Anton Hvornum
added isVM function
2021-04-07added isVM functionadvaithm
2021-04-07Merging changes from master into feature branch to avoid future conflics.Anton Hvornum
2021-04-07Fix newline issue on fstab writesInsanemal
Forced the newline char fstab writes as Python appears to be selecting the incorrect newlines
2021-04-07added hasIntelCPUadvaithm
2021-04-07added return value for functions in hardware.py plus cpuVendor functionadvaithm
2021-04-06Merge branch 'master' into fix-undef-varsAnton Hvornum
2021-04-06Update installer.pyAnton Hvornum
2021-04-06Merge pull request #190 from advaithm/masterAnton Hvornum
post install hook
2021-04-06Merge pull request #188 from SecondThundeR/masterAnton Hvornum
Fix incorrect behavior for empty sudo username
2021-04-06added _post_install hook.advaithm
2021-04-05Fix incorrect behavior for empty sudo usernameSecondThundeR
2021-04-05Corrected for keymap before encrypt hookAnton Hvornum
Also think that we should patch mkinitcpio, not replace it. Especially in the btrfs case where we simply just want to add `btrfs` to the `MODULES` section.
2021-04-05Merge pull request #178 from pyfisch/packagingAnton Hvornum
Simplify packaging
2021-04-05Merge pull request #170 from SecondThundeR/masterAnton Hvornum
Add validation check for username
2021-04-05Update regex rule and move check to a functionSecondThundeR
2021-04-05Replace lowercase conversion with correct checkingSecondThundeR
2021-04-05Add console_scripts archinstall entry pointPyfisch
archinstall should be callable from the command-line. Previously this was achieved with a shell script, however Python packages contain a built in way to to this via the entry points mechanism.
2021-04-05Switch to setup.cfgPyfisch
Configure setup.cfg to find all Python packages. Add more metadata to package.
2021-04-05Removed a TODO commentAnton Hvornum
2021-04-04Fixes: AttributeError: 'BlockDevice' object has no attribute 'keep_partitions'Anton Hvornum
2021-04-04Removing background color definitions for all log functionsZach Osman
2021-04-04Closed #110Zach Osman
2021-04-04Add lowercase conversion for usernamesSecondThundeR
2021-04-04Merge branch 'master' into fix-repo-urlAnton Hvornum
2021-04-04encryption_passwed -> encryption_passwordAnton Hvornum
2021-04-04Update repo to archlinux/archinstallRafael Fontenelle
2021-04-04Fix misspellingsRafael Fontenelle
2021-04-04Removed debugging, added an additional 'move back to beginning' and print ↵Anton Hvornum
the peak again. Added this to any pacstrap call.
2021-04-04Added some debuggingAnton Hvornum
2021-04-04Added stripping of peak output to avoid new lines forming.Anton Hvornum
2021-04-04Added error handling to sys_command's peak function.Anton Hvornum
2021-04-04Moved import due to circular imports.Anton Hvornum
2021-04-04Added functionality towards #155. It's not a progress bar per sae, but it ↵Anton Hvornum
will show the last line outputted by commands enabling peaking of the ongoing process.
2021-04-04Merging in latest changes from master.Anton Hvornum
2021-04-04Merge pull request #158 from advaithm/masterAnton Hvornum
Network manager support
2021-04-04fixed some typos and changed up how we detect if we have to enable/install ↵advaithm
network manager
2021-04-04moved around the if blockadvaithm
2021-04-04fixed typoadvaithm
2021-04-04Revert "Revert "added hardwareincompatibilty erros and updated readme""advaithm
This reverts commit 15925170423134025fa8aa34e5397185e4093e13.
2021-04-04Revert "added hardwareincompatibilty erros and updated readme"advaithm
This reverts commit b5e32f980a27f272c1e3c42969323dff82617a84.
2021-04-04networkmanager supportadvaithm
2021-04-03Fix undefined variables in installerRuslan Kiyanchuk
2021-04-03Forgot option PARTUUID to lsblkAnton Hvornum
2021-04-03Merging in latest changes from master.Anton Hvornum
2021-04-03This should fix #151, by using lsblk instead of /dev/disk/by-partuuid. It ↵Anton Hvornum
also cleaned up the installer code quite a bit during the bootloader installation. Will do the same for encrypted drives later on by implementing UUID on a BlockDevice (disk) level.
2021-04-03This should correct #152. When a newly /boot partition is created with no ↵Anton Hvornum
content or incorrect filesystem (meaning, no file system yet), the .has_content() call will crash due to incorrect fstype. Which means we should be able to skip the check and assume it's safe to format. Because there's no way (?) other OS:es can store something on the boot partition on a broken FS.
2021-04-03Converted the raise exception into a log. Whenever blockdevice is unsure of ↵Anton Hvornum
what type it's working on, it will not log it as a debug message.
2021-04-03Removed a breaking change while fixing hardware raidsAnton Hvornum