From f9785b285f0c9e74b45628764e4ec45e8ca2381b Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 21 Jan 2020 22:37:42 -0500 Subject: [PATCH] Prefer "external booting" u-boot by default. Less rude for end-users expecting to be able to SD boot once flashed. --- README.md | 3 +++ configuration.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f9d3a4..80e7054 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,9 @@ If you rather USB and SD card is tried before the eMMC, `pkgs.uBootPinebookProEx can be installed, which has an alternative patch set added on top that will change the boot order. +The SD image is built using the "alternative boot order" u-boot. Thus, flashing +the image to your eMMC keeps external devices bootable. + ## Keyboard firmware diff --git a/configuration.nix b/configuration.nix index f91837d..79bae76 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, ... }: let - uboot = pkgs.uBootPinebookPro; + uboot = pkgs.uBootPinebookProExternalFirst; in { imports = [