Skip to content
Snippets Groups Projects
  1. Feb 26, 2018
  2. Feb 25, 2018
  3. Feb 24, 2018
    • Oliver Smith's avatar
      Make proprietary drivers optional (1/2): pmbootstrap changes (#1254) · ad5a0d42
      Oliver Smith authored
      Here are the changes necessary in pmbootstrap to make proprietary
      software installed onto the device (firmware and userspace drivers)
      optional (#756). To full close the issue, we need to apply this concept
      to all device packages we already have in a follow-up PR.
      
      Changes:
      * New config file options nonfree_firmware and nonfree_userland, which
        we ask for during "pmbootstrap init" if there are non-free components
        for the selected device.
      * We find that out by checking the APKBUILD's subpakages: The non-free
        packages are called $pkgname-nonfree-firmware and
        $pkgname-nonfree-userland.
      * During "pmbootstrap init" we also show the pkgdesc of these
        subpackages. Parsing that is implemented in
        pmb.parse._apkbuild.subpkgdesc(). It was not implemented as part of
        the regular APKBUILD parsing, as this would need a change in the
        output format, and it is a lot *less* code if done like in this
        commit.
      * pmb/parse/apkbuild.py was renamed to _apkbuild.py, and
        pmb/install/install.py to _install.py: needed to call the function in
        the usual way (e.g. pmb.parse.apkbuild()) but still being able to
        test the individual functions from these files in the test suite.
        We did the same thing for pmb/build/_package.py already.
      * Install: New function get_nonfree_packages() returns the non-free
        packages that will be installed, based on the user's choice in
        "pmbootstrap init" and on the subpackages the device has.
      * Added test cases and test data (APKBUILDs) for all new code,
        refactored test/test_questions.py to have multiple functions for
        testing the various questions / question types from
        "pmbootstrap init" instead of having it all in one big function.
        This allows to use another aport folder for testing the new
        non-free related questions in init.
      Unverified
      ad5a0d42
    • Bart Ribbers's avatar
      New device (Jolla Phone) (#1245) · 2e30fa42
      Bart Ribbers authored
      2e30fa42
    • Luca Weiss's avatar
      Kernel updates (#1253) · 2f78dad3
      Luca Weiss authored
      * linux-postmarketos-lts 4.14.21
      * linux-postmarketos-stable 4.15.5
      2f78dad3
    • MoreRobustThanYou's avatar
    • Pierre Rudloff's avatar
      New device: infocus-flatfish (#1251) · 64c8f39e
      Pierre Rudloff authored
      It boots and display/touchscreen partially work
      (the framebuffer only fills a part of the screen).
      64c8f39e
    • Oliver Smith's avatar
      APKINDEX not found: Only show in verbose log (#1250) · 8f5ffe05
      Oliver Smith authored
      The message appears 20 or so times in a row when setting up a new
      chroot. Right now we log it into the debug log (which is what
      "pmbootstrap log" and "pmbootstrap --details-to-stdout" show). This
      is annoying for normal pmbootstrap usage, and really clutters up the
      Travis output.
      
      This commit changes the log level to verbose, so it only shows up
      when "-v" is passed to pmbootstrap.
      Unverified
      8f5ffe05
  4. Feb 22, 2018
  5. Feb 21, 2018
  6. Feb 20, 2018
    • Oliver Smith's avatar
      zap_mismatch_bins: Adjust to new apkindex parsing · 90ca7b63
      Oliver Smith authored
      Without this fix, `pmbootstrap zap -m` fails with:
      
        File "/home/user/code/pmbootstrap/pmb/__init__.py", line 61, in main
          getattr(frontend, args.action)(args)
        File "/home/user/code/pmbootstrap/pmb/helpers/frontend.py", line 322, in zap
          distfiles=args.distfiles)
        File "/home/user/code/pmbootstrap/pmb/chroot/zap.py", line 54, in zap
          zap_mismatch_bins(args, confirm, dry)
        File "/home/user/code/pmbootstrap/pmb/chroot/zap.py", line 110, in zap_mismatch_bins
          if pkgname != bin_data["pkgname"]:
      KeyError: 'pkgname'
      Unverified
      90ca7b63
    • Bart Ribbers's avatar
      New device: Nexus 5X (LG Bullhead) (#1222) · a3676b1b
      Bart Ribbers authored
      a3676b1b
    • Oliver Smith's avatar
    • Oliver Smith's avatar
      Index parser: support multiple package providers (#1202) · db5e6963
      Oliver Smith authored
      * The APKINDEX parser used to return a dictionary with one package for
        a given package name. This works for the installed packages database,
        because there can only be one provider for a package. But when
        parsing packages from binary repositories, we need to support
        multiple providers for one package. It is now possible to get a
        dictionary with either multiple providers, or just a single provider
        for each package.
      * Dependency parsing logic has been adjusted, to support multiple
        providers. For multiple providers, the one with the same package
        name as the package we are looking up is prefered. If there is none
        (eg. "so:libEGL.so.1" is provided by "mesa-egl"), it prefers packages
        that will be installed anyway, and after that packages that are
        already installed. When all else fails, it just picks the first one
        and prints a note in the "pmbootstrap log".
      * Added testcases for all functions in pmb.parse.apkindex and
        pmb.parse.depends
      * pmbootstrap chroot has a new "--add" parameter to specify packages
        that pmbootstrap should build if neccessary, and install in the
        chroot. This can be used to quickly test the depencency resolution
        of pmbootstrap without doing a full "pmbootstrap install".
      
      Fixes #1122.
      Unverified
      db5e6963
    • Martijn Braam's avatar
      postmarketos-ui-i3wm (#1225) · 481c99f5
      Martijn Braam authored
      * Added a ui package for i3wm
      
      * Added n900 specific i3wm config
      
      * Fixed mixed tabs and spaces in i3status.
      
      This is also the first commit made on an n900
      running postmarketOS.
      
      * Removed redundant X11
      
      * Use lock.sh to lock the device
      
      * Windows management improvements
      
      * bump pkgver
      
      * Fix device-nokia-n900 checksums
      
      * Fixed path in the i3wm split package
  7. Feb 19, 2018
  8. Feb 18, 2018
  9. Feb 17, 2018
  10. Feb 16, 2018
    • Oliver Smith's avatar
      Package kernel-scripts separately (#1234) · d2610343
      Oliver Smith authored
      We have two methods of cross-compiling:
      * native: everything runs with the host architecture, QEMU is not
        involved. This is the fastest, but requires the build system to be
        working with it. We use this for all linux-* packages currently.
      * distcc: everything runs through QEMU emulating the target arch,
        *except* for the compiler. This is the most compatible approach
        working with all packages.
      
      When compiling `linux-*` packages natively, kernel scripts needed
      during the build process get generated. Some of these are C files that
      get compiled as executables. In native mode, these get compied to the
      native architecture, in distcc mode to the target architecture.
      
      The problem is, that we need these scripts compiled for the target
      architecture in the kernel's dev package in order to compile kernel
      modules outside of the kernel's package (e.g. wireguard).
      
      It is not possible to just rewrite this logic to generate target-arch
      binaries when running in native mode, because these binaries require
      musl-dev, linux-headers and some other packages to be installed for the
      target architecture inside the native chroot.
      
      We solve this by introducing a new `kernel-scripts` package. which
      contains just the binary scripts. In case the dev package was
      cross-compiled, it depends on `kernel-scripts` and symlinks these
      binaries. The `kernel-scripts` package always gets compiled in distcc
      mode since it does not have a `linux-` prefix.
      
      Fixes #1230.
      d2610343
  11. Feb 14, 2018
  12. Feb 13, 2018
  13. Feb 12, 2018
Loading