Kernel upgrade question September 07, 2024 02:41PM |
Registered: 7 years ago Posts: 162 |
Re: Kernel upgrade question September 07, 2024 11:54PM |
Admin Registered: 13 years ago Posts: 18,898 |
Quote
2. Extract the kernel and the DTB files in the archive:
cd /boot/kernel
tar xjf linux-6.9.6-kirkwood-tld-1-bodhi.tar.bz2
cd /boot
tar xf ./kernel/linux-dtb-6.9.6-kirkwood-tld-1.tar
3. And install it with dpkg. Remove flash-kernel first to avoid potential problem (if flash-kernel was not installed then you'll see some error output):
cd /boot
apt-get remove flash-kernel
dpkg -i ./kernel/linux-image-6.9.6-kirkwood-tld-1_1_armel.deb
ls -larth /bootYou will see the date time of the kernel files and the most recent files are listed at the bottom.
Re: Kernel upgrade question September 10, 2024 08:32PM |
Registered: 7 years ago Posts: 162 |
root@pogoplugmobile:~# ls -larth /boot total 137M -rwxr-xr-x 1 root root 6.0M Oct 18 2023 vmlinuz-6.5.7-kirkwood-tld-1 -rw-r--r-- 1 root root 194K Oct 18 2023 config-6.5.7-kirkwood-tld-1 -rw-r--r-- 1 root root 4.4M Oct 18 2023 System.map-6.5.7-kirkwood-tld-1 -rwxr-xr-x 1 root root 6.0M Oct 18 2023 zImage-6.5.7-kirkwood-tld-1 -rw-r--r-- 1 root root 8.2M Oct 18 2023 linux-headers-6.5.7-kirkwood-tld-1_1_armel.deb drwxr-xr-x 2 root root 4.0K Jun 2 17:34 dts -rwxr-xr-x 1 root root 6.0M Jun 21 15:33 vmlinuz-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 197K Jun 21 15:33 config-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 4.4M Jun 21 15:33 System.map-6.9.6-kirkwood-tld-1 -rwxr-xr-x 1 root root 6.0M Jun 21 17:48 zImage-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 8.4M Jun 21 18:00 linux-headers-6.9.6-kirkwood-tld-1_1_armel.deb -rw-r--r-- 1 root root 25M Jun 21 18:01 linux-image-6.9.6-kirkwood-tld-1_1_armel.deb -rw-r--r-- 1 root root 1.4M Jun 21 18:13 linux-dtb-6.9.6-kirkwood-tld-1.tar -rw-r--r-- 1 root root 164K Jun 25 16:00 linux-6.9.6-kirkwood-tld-1.patch -rw-r--r-- 1 root root 5.7M Sep 7 11:38 initrd.img-6.5.7-kirkwood-tld-1 -rw-r--r-- 1 root root 55 Sep 7 12:00 uEnv.txt -rw-r--r-- 1 root root 39M Sep 7 12:46 linux-6.9.6-kirkwood-tld-1-bodhi.tar.bz2 drwxr-xr-x 20 root root 4.0K Sep 7 20:22 .. -rw-r--r-- 1 root root 5.6M Sep 7 20:28 initrd.img-6.9.6-kirkwood-tld-1 drwxr-xr-x 3 root root 4.0K Sep 7 20:28 . -rw-r--r-- 1 root root 6.0M Sep 7 20:28 uImage -rw-r--r-- 1 root root 5.6M Sep 7 20:29 uInitrd
Re: Kernel upgrade question September 11, 2024 12:42AM |
Admin Registered: 13 years ago Posts: 18,898 |
-rwxr-xr-x 1 root root 6.0M Jun 21 15:33 vmlinuz-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 197K Jun 21 15:33 config-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 4.4M Jun 21 15:33 System.map-6.9.6-kirkwood-tld-1 -rw-r--r-- 1 root root 5.6M Sep 7 20:28 initrd.img-6.9.6-kirkwood-tld-1
The kernel build time is usually a bit later than kernel files.Quote
uname -a
Linux version 6.9.6-kirkwood-tld-1 (root@tldDebian) (gcc (Debian 12.2.0-14) 12.2.0, GNU ld (GNU Binutils for Debian) 2.40) #1 PREEMPT Fri Jun 21 16:45:39 PDT 2024
-rw-r--r-- 1 root root 164K Jun 25 16:00 linux-6.9.6-kirkwood-tld-1.patch
Re: Kernel upgrade question September 11, 2024 08:56AM |
Registered: 4 years ago Posts: 60 |
Re: Kernel upgrade question September 11, 2024 09:06AM |
Registered: 7 years ago Posts: 162 |