Boot Up Errors After Saving Session on Dell Laptop

Moderator: Forum moderators

Post Reply
JusGellin
Posts: 235
Joined: Fri Jan 19, 2024 11:12 pm
Has thanked: 24 times
Been thanked: 24 times

Boot Up Errors After Saving Session on Dell Laptop

Post by JusGellin »

I did a frugal install of BookwormPup64_10.0.4 on a Dell Inspiron 15 7000 Series laptop. If I don't accept any session changes it boots fine with no errors. But the first time I allow session changes even though I don't change a single thing, it gives this error from then on. But it completes the boot up. It looks like it says it is "Adding module Intel_ishtp_hidmodprobe"
Is there anything I can do to prevent this error?
Thanks

Attachments
BootError.jpg
BootError.jpg (118.14 KiB) Viewed 137 times
User avatar
rockedge
Site Admin
Posts: 5774
Joined: Mon Dec 02, 2019 1:38 am
Location: Connecticut,U.S.A.
Has thanked: 2051 times
Been thanked: 2132 times
Contact:

Re: Boot Up Errors After Saving Session on Dell Laptop

Post by rockedge »

@JusGellin Can you post the boot stanza that is being used for the failed boot?

It seems like there is a problem for the system to find the partition with the save folder/file. Which causes the kernel panic and boot failure.

JusGellin
Posts: 235
Joined: Fri Jan 19, 2024 11:12 pm
Has thanked: 24 times
Been thanked: 24 times

Re: Boot Up Errors After Saving Session on Dell Laptop

Post by JusGellin »

I think you mean the grub.cfg file since I'm booting up using uefi, right?

#
set default=0
set timeout=5

set menu_color_normal='yellow/blue'
set menu_color_highlight='black/cyan'

loadfont /boot/grub/fonts/DejaVuSansMono18.pf2
set gfxmode=auto
terminal_output gfxterm

menuentry "Puppy dpupbw64 10.0.4" {
insmod ext2
search --no-floppy --fs-uuid --set=root ed43818b-9917-40ba-bbb0-6c514e1d1d1e
echo "Loading vmlinuz"
linux /pupsave/vmlinuz pmedia=atahd pdrv=puplinux psubdir=/pupsave pfix=fsck,fsckp,trim TZ=GMT0
if [ -e /pupsave/local-initrd.gz ]; then
set local_rd=/pupsave/local-initrd.gz
else
set local_rd=
fi
if [ -e /pupsave/ucode.cpio ]; then
set ucode_rd=/pupsave/ucode.cpio
echo "Loading ucode.cpio and initrd.gz"
else
set ucode_rd=
echo "Loading initrd.gz"
fi
initrd $ucode_rd /pupsave/initrd.gz $local_rd
}
if [ $grub_platform = 'efi' ]; then
menuentry "System BIOS setup" {
fwsetup
}
fi
menuentry "Shutdown computer" {
halt
}
menuentry "Reboot computer" {
reboot
}

Post Reply

Return to “BookwormPup”