- Sep 07, 2024
-
-
Oliver Smith authored
Use NonBugError when printing the error for the --file code path too.
-
- Sep 06, 2024
-
-
Clayton Craft authored
repo is a Path obj now, and its name is used as a key in the dest_paths dict. Fixes this failure: working_dir=dest_paths[repo], ~~~~~~~~~~^^^^^^ KeyError: PosixPath('/home/clayton/src/pmaports')
-
- Sep 02, 2024
-
-
Clayton Craft authored
When building a systemd image, this patch installs pmos-base-systemd (and its dependencies) first before building the rest of the device chroot. This is a workaround for... The pmos-base-systemd package provides distro-wide systemd presets for services, and when it's added to the `install_packages` list then there's no guarantee that apk will install it *before* service packages execute `systemctl preset`. In other words: `preset` may be run before the distro presets are actually installed, and crushing expectations. By making sure pmos-base-systemd is installed in the chroot first, we can provide some guarantee that presets will be there when services are installed a bit later.
-
- Sep 01, 2024
-
-
Tweaked-By:
Oliver Smith <ollieparanoid@postmarketos.org>
-
-
- Aug 25, 2024
-
-
Caleb Connolly authored
Was using config.user and ignoring --user arg Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
This can be used when building images for generic device targets that support devices with different sector size requirements. For example, trailblazer prebuilts are currently expected to be flashed to a USB drive where a 4096 sector size would be unsuitable since the bootloader wouldn't detect it. But when building for a Qualcomm phone, one would use --split and --sector-size to build the root and boot partitions with a 4k sector size which is appropriate to the UFS storage. This flag could also be used by BPO to build both variants. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
- Aug 21, 2024
-
-
Hugo Barrera authored
Functions with no explicit return type are considered to return `Any`.
-
Hugo Barrera authored
Makes errors easier to read between hints and warnings.
-
- Aug 12, 2024
-
-
Oliver Smith authored
Change to "back to pamports dir" instead of "back to aports-folder". Naming the pmaports dir just "aports" is legacy from before pmaports.git was split out to a separate git repository.
-
Oliver Smith authored
Don't print a trace if kconfig check fails.
-
Oliver Smith authored
Abort the "pmbootstrap kconfig check" on the first error, unless the --keep-going argument was passed. This makes it easier to go through the failed kernels one by one until they are all fixed.
-
- Aug 11, 2024
-
-
Some shells, in particular Nushell, replace the built-in POSIX-compatible uname with a custom one that does not support common flags. I opened an issue in the Nushell repository about this, but it was rejected on the grounds that POSIX compatibility is not a goal. As such, run this in a subshell to ensure that we get the expected uname interface. Nushell issue: https://github.com/nushell/nushell/issues/12570
-
Otherwise this defaults to Any.
-
- Jul 30, 2024
-
-
Anri Dellal authored
-
- Jul 29, 2024
-
-
Oliver Smith authored
Do not fail with: ERROR: 'Namespace' object has no attribute 'image' Adjust the similar check for args.rootfs to be in the same style while at it.
-
- Jul 28, 2024
-
-
Oliver Smith authored
Don't fail with: type object 'Config' has no attribute 'mirrors.pmaports' Fixes: issue 2420
-
- Jul 23, 2024
-
-
Fixes #2416
-
- Jul 22, 2024
-
-
-
Remove arguments to set postmarketOS and Alpine mirrors. The current implementation is broken with the way the mirrors are now configured: The current implementation fills a list, but the mirror configuration code expects a string. It is not longer possible to set an arbitrary amount of mirrors for the postmarketOS mirror. The benefit is that we don't have comma separated values in the config file anymore but instead just simple strings. Now it is possible to have one proper mirror for aports, pmaports and pmaports_systemd, and one _custom one to override each of these. We already have too many options in "pmbootstrap -h", and changing a mirror is more of a base configuration that you do once and maybe change a few times, but don't need to be able to set it with each pmbootstrap run. Users are not going to write this out manually on their command-lines, it only makes sense in scripts and wrappers for pmbootstrap, and there you could as well use another method (as now described in docs/mirrors.md) to set the mirrors. Less important, but another reason is that using "-mp" (two letters as short argument) isn't really elegant.
-
- Jul 21, 2024
-
-
Caleb Connolly authored
We handle this correctly for dependencies of the base package but not the base package itself.... Fix this. Should avoid duplication here ideally. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
A previous attempt inserted subpackage depends into the package depends list returned by get_depends(). This meant that pmb would try to install subpackage depends when building the package, which breaks for some cases like device packages with kernel variants since the depends of different subpackages might conflict with each other. Let's instead just add the subpackage depends to the build queue, so they get built like package depends, without being pulled in as build dependencies for the package. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
This reverts commit 6002a733.
-
When using fastboot-bootpart flash method to split root/boot partitions out, it was no longer possible to flash the Android boot partition. Add a new flash_boot action to handle this. This will allow us to migrate devices like the OnePlus 6 to have the boot partition (ESP) on system, and the rootfs on userdata rather than the current subpartition method. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
This wrapper script, which was added in alpinelinux's heimdall 2.1.0 package, replaces heimdall_flash_kernel.sh and takes a fifth arg with dtb name. The script then concatenates vmlinuz and the dtb into a vmlinuz-dtb file and flashes it to the kernel partition. Boot-deploy was previously responsible for creating vmlinuz-dtb, but to save disk space we have moved away from creating it unconditionally. Fixes: https://gitlab.com/postmarketOS/boot-deploy/-/issues/26
-
Instead, use new --wait arg added in heimdall 2.1.0. Heimdall then waits until it detects a compatible device and then continues with flash action.
-
- Jul 20, 2024
-
-
Caleb Connolly authored
When we output the root partition path, it says rootfs.img but it should be root.img fix it. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
- Jul 19, 2024
-
-
Caleb Connolly authored
Recurse dependencies of subpackages too. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
Caleb Connolly authored
Pass in --repository for all channels not just the default. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
- Jul 18, 2024
-
-
Caleb Connolly authored
Bail on empty build queue after checking if build_packages need building. So if apk-tools / alpine-base / etc are outdated but nothing else is they'll still be built. Signed-off-by:
Caleb Connolly <caleb@postmarketos.org>
-
- Jul 17, 2024
-
-
Oliver Smith authored
Fix writing config options that are stored as CSV-list. Without this patch: $ pmbootstrap config aports /tmp/pmaports [23:43:58] Config changed: aports='/tmp/pmaports' $ pmbootstrap config aports [PosixPath('/'), PosixPath('t'), PosixPath('m'), PosixPath('p'), PosixPath('/'), PosixPath('p'), PosixPath('m'), PosixPath('a'), PosixPath('p'), PosixPath('o'), PosixPath('r'), PosixPath('t'), PosixPath('s')] Storing strings as CSV list isn't great and we probably want to implement this more elegantly, see the related issue. But let's fix this first. Related: pmbootstrap issue 2412
-
- Jul 16, 2024
-
-
Iuri Jikidze authored
-
- Jul 15, 2024
-
-
Oliver Smith authored
-
Oliver Smith authored
Let's write all new documentation in markdown, and convert existing ones at some point. I think we are all much more familiar with markdown than with the rst format.
-
Oliver Smith authored
Allow setting _custom mirrors in the config: * alpine_custom * pmaports_custom * systemd_custom When these are set, they are added to /etc/apk/repositories before real repositories. This is used by bpo to build packages with a WIP repository enabled, in addition to the final repository. All mirrors can also be set to "none" to be disabled. This is important for bootstrapping from pure Alpine without any binary repository, and the bpo testsuite also uses this. I've discussed with Caleb whether to name it _wip instead of _custom, but the latter is more generic and people may also use this for other use cases than the bpo wip repository thing.
-
Oliver Smith authored
-
Oliver Smith authored
We have decided to let the user generate a pmbootstrap_v3.cfg file instead of attempting to automatically migrate the file. This way we don't need to worry about potential migration bugs and users can also temporarily go back to v2 to compare behavior with v3 without problems. Remove migration logic related to mirror_alpine and mirrors_postmarketos, before I add support for using multiple repositories with these again (as needed for bpo). This reduces complexity and removes a note about "multiple mirrors are not supported" that won't be valid anymore.
-
Oliver Smith authored
When selecting a different mirror in "pmbootstrap init", then select the systemd mirror as well. It will always be the normal postmarketOS mirror plus some path appended. Currently it is the path for the staging repository, this will change when the systemd changes are merged to pmaports master and bpo can build it. I'll adjust this before we release pmbootstrap v3. I have considered changing the code so that we don't store a separate systemd mirror in the config. But I think it's useful to be able to point to systemd mirrors with different paths for debugging purposes, and also it would make the logic more complex once we re-introduce support for multiple mirrors of the same type for bpo. So I've intentionally kept that part as-is.
-
Oliver Smith authored
-