From fc2a8b8589307e3516e3af889708d80c750b8f92 Mon Sep 17 00:00:00 2001 From: Han Gao Date: Fri, 20 Sep 2024 23:29:51 +0800 Subject: [PATCH] [test]: repo: use dev repo Signed-off-by: Han Gao --- scripts/make_rootfs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/make_rootfs.sh b/scripts/make_rootfs.sh index 200a47f..c174e7b 100755 --- a/scripts/make_rootfs.sh +++ b/scripts/make_rootfs.sh @@ -7,10 +7,10 @@ make_rootfs_tarball() mmdebstrap --architectures=riscv64 \ --include="$PACKAGE_LIST" \ sid $1 \ - "deb https://mirror.iscas.ac.cn/revyos/revyos-gles-21/ revyos-gles-21 main" \ - "deb https://mirror.iscas.ac.cn/revyos/revyos-base/ sid main contrib non-free non-free-firmware" \ - "deb https://mirror.iscas.ac.cn/revyos/revyos-kernels/ revyos-kernels main" \ - "deb https://mirror.iscas.ac.cn/revyos/revyos-addons/ revyos-addons main" + "deb [trusted=yes] https://mirror.iscas.ac.cn/revyos/dev/revyos-gles-21/ revyos-gles-21 main" \ + "deb [trusted=yes] https://mirror.iscas.ac.cn/revyos/dev/revyos-kernels/ revyos-kernels main" \ + "deb [trusted=yes] https://mirror.iscas.ac.cn/revyos/dev/revyos-addons/ revyos-addons main" \ + "deb https://mirror.iscas.ac.cn/revyos/revyos-base/ sid main contrib non-free non-free-firmware" } make_rootfs() @@ -48,4 +48,4 @@ make_rootfs() # apt update chroot "$CHROOT_TARGET" sh -c "apt update" -} \ No newline at end of file +}