fix raspi kernel upgrades (#2202)

* fix build

* use same node versions

* lock kernel to 5.15.76
This commit is contained in:
Aiden McClelland
2023-03-10 17:11:06 -07:00
committed by GitHub
parent 7c1e2bf96f
commit 75f9c6b0fb
5 changed files with 49 additions and 27 deletions

View File

@@ -198,7 +198,7 @@ async fn maybe_do_update(
async fn do_update(ctx: RpcContext, eos_url: EosUrl) -> Result<(), Error> {
let mut rsync = Rsync::new(
eos_url.rsync_path()?,
"/media/embassy/next",
"/media/embassy/next/",
Default::default(),
)
.await?;
@@ -303,7 +303,7 @@ async fn sync_boot() -> Result<(), Error> {
RsyncOptions {
delete: false,
force: false,
ignore_existing: true,
ignore_existing: false,
exclude: Vec::new(),
no_permissions: false,
},