Skip to content

Commit 34978ba

Browse files
author
Daniel Hiepler
committed
change path of config.txt
1 parent 4642769 commit 34978ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

bootstrap-plugins/config

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ function rpi_config_run() {
2929
local c
3030
for c in "${RPI_CONFIG_ADD[@]}" ; do
3131
log "setting ${c} ..."
32-
rpi_append_to_file "${c}" "${RPI_BOOT}/config.txt" || error "adding ${c}"
32+
rpi_append_to_file "${c}" "${RPI_BOOT}/firmware/config.txt" || error "adding ${c}"
3333
done
3434

3535
for c in "${RPI_CONFIG_REMOVE[@]}" ; do
3636
log "removing ${c} ..."
37-
rpi_remove_pattern_from_file "${c}" "${RPI_BOOT}/config.txt" || error "removing ${c}"
37+
rpi_remove_pattern_from_file "${c}" "${RPI_BOOT}/firmware/config.txt" || error "removing ${c}"
3838
done
3939

40-
rpi_dist_cp_if_exist "/boot/config.txt"
40+
rpi_dist_cp_if_exist "/boot/firmware/config.txt"
4141

4242
return 0
4343
}
4444

4545
function rpi_config_description() {
46-
echo "modify /boot/config.txt"
46+
echo "modify /boot/firmware/config.txt"
4747
}
4848

4949
function rpi_config_help_params() {
@@ -53,5 +53,5 @@ function rpi_config_help_params() {
5353
}
5454

5555
function rpi_config_help_distfiles() {
56-
help_distfile "/boot/config.txt"
56+
help_distfile "/boot/firmware/config.txt"
5757
}

0 commit comments

Comments
 (0)