Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-05-19 | setup-devd: add more tests | Natanael Copa | |
2022-05-19 | tests: add fake rc-service script | Natanael Copa | |
with tests to verify that it works | |||
2022-05-19 | tests: add fake rc-update binary | Natanael Copa | |
and add tests for it to verify that it actually works as expected We can use this for the other tests later | |||
2022-05-19 | release 3.14.0_rc4 | Natanael Copa | |
2022-05-19 | setup-disk: calculate size of ESP parition for grub | Natanael Copa | |
some devices, like NVME may have a physical block size of 4096, in which case FAT32 needs minimum 260MB. Use physical_block_size to calculate the size for ESP | |||
2022-05-18 | setup-timezone: make -z backwards compatible | Oliver Smith | |
Since -z is still present in getopts parsing, it looks like the removal of the option was supposed to be backwards compatible. Fix the code to make it so. Fixes: 31e63870 ("setup-timezone: fix usage, drop -z option from help") | |||
2022-05-18 | tests: add test for setup-timezone -z compat | Natanael Copa | |
2022-05-18 | tests: add test for setup-timezone -i | Natanael Copa | |
verify that it does not uninstall tzdata | |||
2022-05-18 | setup-timezone: add test | Natanael Copa | |
Make it testable | |||
2022-05-18 | setup-disk: use smaller ESP partition for UEFI | Natanael Copa | |
Grub's efi files are just a few MB, so we can reduce the size of the ESP. We also enforce FAT32, which requires minimum 32MB. Apparently many UEFI firmware implementations only support FAT32. https://wiki.osdev.org/EFI_System_Partition#Format | |||
2022-05-16 | release 3.14.0_rc3 | Natanael Copa | |
2022-05-16 | setup-devd: silence warnings | Natanael Copa | |
add --quiet option to silence warnings | |||
2022-05-16 | setup-devd: use long opts for rc-service | Natanael Copa | |
it makes the script more readable | |||
2022-05-16 | setup-devd: fix service `mdev-init' does not exist message | Natanael Copa | |
We currently does not have any mdev-init script. | |||
2022-05-16 | setup-devd: always perform a coldplug when enabling udev | Laurent Bercot | |
2022-05-13 | release 3.14.0_rc2 | Natanael Copa | |
2022-05-13 | tests: add test for setup-alpine | Natanael Copa | |
2022-05-13 | setup-alpine: fix -h usage text | Natanael Copa | |
2022-05-13 | tests: add test for update-conf | Natanael Copa | |
2022-05-13 | update-conf: fix -h usage message | Natanael Copa | |
2022-05-13 | tests: add test for copy-modloop | Natanael Copa | |
2022-05-13 | copy-modloop: add -h option and usage text | Natanael Copa | |
2022-05-13 | tests: add test for setup-apkrepos | Natanael Copa | |
2022-05-13 | setup-apkrepos: create dir if missing and add mock | Natanael Copa | |
This allows us test it | |||
2022-05-13 | setup-apkrepos: fix -h usage help text | Natanael Copa | |
2022-05-13 | tests: add test for setup-mta | Natanael Copa | |
2022-05-13 | setup-mta: add usage help text | Natanael Copa | |
2022-05-13 | tests: add test for setup-disk | Natanael Copa | |
only test for help text. We test most of the other functionality with the alpine-installer-testsuite. | |||
2022-05-13 | tests: add test for setup-acf | Natanael Copa | |
2022-05-13 | setup-acf: fix -h and usage text | Natanael Copa | |
2022-05-13 | setup-disk: fix -h usage text | Natanael Copa | |
2022-05-13 | setup-apkcache: fix when relative path is specified | Natanael Copa | |
2022-05-13 | tests: add test for setup-apkcache | Natanael Copa | |
2022-05-13 | setup-apkcache: fix various quating issues | Natanael Copa | |
2022-05-13 | setup-apkcache: do no prompt when DIR is specified | Natanael Copa | |
When DIR is specified we run in non-interactive mode and should not block. | |||
2022-05-13 | setup-apkcache: fix usage and -h option | Natanael Copa | |
2022-05-13 | tests: add test for setup-lbu | Natanael Copa | |
2022-05-13 | setup-lbu: create media directory relative ROOT | Natanael Copa | |
2022-05-13 | setup-lbu: fix usage help text | Natanael Copa | |
2022-05-13 | tests: add test for openntpd | Natanael Copa | |
2022-05-13 | setup-ntp: fix usage, and drop -c option | Natanael Copa | |
Let -h return success instead of error. Send usage help to stderr on errors. Use argument instead of option to set the NTP client non-interactivey and make sure it doesn't block. Give proper error message if uinsupported client is specified | |||
2022-05-13 | setup-ntp: only send usage help on error | Natanael Copa | |
send -h to stdout | |||
2022-05-12 | update-kernel.in: pass kernel version to modinfo | Dermot Bradley | |
When modinfo is called to determine firmware ensure the installed kernel version is used, not the running kernel version. Busybox's modinfo recently had "-k" supported added to it. | |||
2022-05-12 | tests: add a few tests for update_kernel | Natanael Copa | |
2022-05-12 | update-kernel: fix usage help text | Natanael Copa | |
send it to stdout with -h | |||
2022-05-12 | Add gitlab CI pipeline | Natanael Copa | |
2022-05-12 | tests: add the missing test_env.sh | Natanael Copa | |
it was missed due to the *.sh in .gitignore | |||
2022-05-12 | tests: setup-proxy: whitespace | Natanael Copa | |
2022-05-12 | tests: add tests for setup-proxy | Natanael Copa | |
2022-05-12 | setup-proxy: fix removal of proxy with 'none' | Natanael Copa | |
Make sure that we remove the proxy with setup-proxy none. Also allow https proxies while at it and mock wget for testing |