File tree 5 files changed +35
-0
lines changed
40grub/usr/lib/bootupd/grub2-static/configs.d
5 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ ostree-layers:
18
18
- overlay/20platform-chrony
19
19
- overlay/25azure-udev-rules
20
20
- overlay/30lvmdevices
21
+ - overlay/40grub
21
22
22
23
# Be minimal
23
24
recommends : false
Original file line number Diff line number Diff line change
1
+
2
+ # Any non-default console settings will be inserted here.
3
+ # CONSOLE-SETTINGS-START
4
+ # CONSOLE-SETTINGS-END
Original file line number Diff line number Diff line change
1
+ # Remove soon when Ignition is providing this:
2
+ # https://github.com/coreos/fedora-coreos-config/pull/2769#discussion_r1428152480
3
+ #
4
+ # Determine if this is a first boot and set the ${ignition_firstboot} variable
5
+ # which is used in the kernel command line.
6
+ set ignition_firstboot =" "
7
+ if [ -f " /ignition.firstboot" ]; then
8
+ # Default networking parameters to be used with ignition.
9
+ set ignition_network_kcmdline =' '
10
+
11
+ # Source in the `ignition.firstboot` file which could override the
12
+ # above $ignition_network_kcmdline with static networking config.
13
+ # This override feature is also by coreos-installer to persist static
14
+ # networking config provided during install to the first boot of the machine.
15
+ source " /ignition.firstboot"
16
+
17
+ set ignition_firstboot =" ignition.firstboot ${ignition_network_kcmdline}"
18
+ fi
Original file line number Diff line number Diff line change
1
+
2
+ # Import user defined configuration
3
+ # tracker: https://github.com/coreos/fedora-coreos-tracker/issues/805
4
+ if [ -f $prefix/user.cfg ]; then
5
+ source $prefix/user.cfg
6
+ fi
Original file line number Diff line number Diff line change @@ -93,3 +93,9 @@ pre-existing LVM devices attached. See the tracker issue [1] for more
93
93
information.
94
94
95
95
[ 1] https://github.com/coreos/fedora-coreos-tracker/issues/1517
96
+
97
+ 40grub
98
+ ------
99
+
100
+ Add in static grub configs that will be leveraged by bootupd when
101
+ managing bootloaders. See https://github.com/coreos/bootupd/pull/543
You can’t perform that action at this time.
0 commit comments