From 6eb1c9908c6f9812a8e919f03bb3b6ab867a1ef5 Mon Sep 17 00:00:00 2001 From: Komal Bajaj Date: Thu, 8 Jan 2026 17:42:35 +0530 Subject: [PATCH 1/3] Fix README_ubuntu.md link to correct kernel deb build section Updated the reference link in README_ubuntu.md to point to the correct section for building Ubuntu kernel deb packages. Signed-off-by: Komal Bajaj --- README_ubuntu.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_ubuntu.md b/README_ubuntu.md index 61e9d5e..bb48f29 100644 --- a/README_ubuntu.md +++ b/README_ubuntu.md @@ -1,6 +1,6 @@ # How to install kernel deb packages on Ubuntu -For building kernel deb packages, refer to [Build Kernel deb packages](./README.md#10-or-build-ubuntu-kernel-deb-packages) +For building kernel deb packages, refer to [Build Kernel deb packages](./README.md#12-or-build-ubuntu-kernel-deb-packages) The **linux-image-_arm64.deb** contains kernel image and modules. Copy the deb package to the device and install the deb package on device From 7af57c7ff8928b989b009e7228204403a3205df0 Mon Sep 17 00:00:00 2001 From: Komal Bajaj Date: Thu, 8 Jan 2026 17:44:04 +0530 Subject: [PATCH 2/3] Revert "Update ramdisk download URL" Reason for revert: The KernelCI buildroot arm64 rootfs image does not support bringing up ADB, which is required for development workflows. The previous Linaro ramdisk provides the ability to enable ADB shell. Signed-off-by: Komal Bajaj --- README.md | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3fe0a85..816ab79 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ git clone git@github.com:qualcomm-linux/kernel.git #### Fetch Ramdisk (For arm64) ``` mkdir artifacts -wget -O artifacts/ramdisk.gz http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230703.0/arm64/rootfs.cpio.gz +wget -O artifacts/ramdisk.gz https://snapshots.linaro.org/member-builds/qcomlt/testimages/arm64/1379/initramfs-test-image-qemuarm64-20230321073831-1379.rootfs.cpio.gz ``` #### Fetch systemd boot binaries diff --git a/setup.sh b/setup.sh index 0d67fbf..e08d007 100644 --- a/setup.sh +++ b/setup.sh @@ -45,7 +45,7 @@ show_help() { KERNEL_REPO=https://github.com/qualcomm-linux/kernel.git KERNEL_BRANCH=qcom-next KERNEL_PATH="../kernel" -RAMDISK_PATH="http://storage.kernelci.org/images/rootfs/buildroot/buildroot-baseline/20230703.0/arm64/rootfs.cpio.gz" +RAMDISK_PATH="https://snapshots.linaro.org/member-builds/qcomlt/testimages/arm64/1379/initramfs-test-image-qemuarm64-20230321073831-1379.rootfs.cpio.gz" # Parse long options eval set -- "$(getopt -n "$0" -o "" \ From f5a755e9a20e3e9d385f017da093184c6d95495a Mon Sep 17 00:00:00 2001 From: Komal Bajaj Date: Thu, 8 Jan 2026 18:01:01 +0530 Subject: [PATCH 3/3] Make setup.sh executable Changed the file mode of setup.sh to make it executable. Signed-off-by: Komal Bajaj --- setup.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 setup.sh diff --git a/setup.sh b/setup.sh old mode 100644 new mode 100755