1. 08 Feb, 2025 2 commits
  2. 06 Feb, 2025 5 commits
  3. 05 Feb, 2025 3 commits
  4. 04 Feb, 2025 6 commits
  5. 31 Jan, 2025 12 commits
  6. 30 Jan, 2025 7 commits
  7. 29 Jan, 2025 5 commits
    • Anton Midyukov's avatar
      net-eth: improvement systemd-networkd configs · 9161903d
      Anton Midyukov authored
      Kind=!* - this means that the interface is not a child of any bridge,
      bond or tunnel.
      9161903d
    • Michael Shigorin's avatar
      e2k: generate.mk fixes and tweaks · 17285f04
      Michael Shigorin authored
      This is a cumulative patch starting with
      a typo fix and ending with intentation fix,
      but there's a missing "-n" bugfix in the middle
      along with assorted stylistic improvements
      (at least to me :).
      
      "condition && action" lines tend to be less readable
      when conditions and/or actions become more than a few
      characters (especially when these come in packs);
      
      condition &&
      	action
      
      form is less prone to some forms of human errors, and
      
      if condition; then
      	action
      fi
      
      is a guard against "just add one more action"
      which gets added *unconditionally* often when
      the original construct was meant as a one-liner
      with strictly one action.
      
      Making code fit 80 columns helps fit more tall xterms
      horizontally when merging that code, and less than four
      tends to be harmful for merge performance (takes two
      FullHD displays or a 4K one for me these days).
      17285f04
    • Anton Midyukov's avatar
      e2k, install2, live, live-install, rescue: generate menu when generate profile · 42242fd3
      Anton Midyukov authored
      This allows us to add menu items to the menu that cannot be specified
      based on the external features of the files contained in the image.
      For example, the item 'live' of boot in rescue mode.
      In the future, it will be possible to remake generators for syslinux
      and grub using a similar principle.
      42242fd3
    • Anton Midyukov's avatar
    • Anton Midyukov's avatar
      e2k: fix 20-e2k-boot to install by default if available · fc2fd035
      Anton Midyukov authored
      stage2 image semantics have changed with live/altinst merge.
      Thanks Michael Shigorin.
      fc2fd035