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
Boot Up Errors After Saving Session on Dell Laptop
Moderator: Forum moderators
Boot Up Errors After Saving Session on Dell Laptop
- Attachments
-
- BootError.jpg (118.14 KiB) Viewed 206 times
- rockedge
- Site Admin
- Posts: 6817
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 2968 times
- Been thanked: 2791 times
- Contact:
Re: Boot Up Errors After Saving Session on Dell Laptop
@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.
Re: Boot Up Errors After Saving Session on Dell Laptop
I think you mean the grub.cfg file since I'm booting up using uefi, right?
#
set default=0
set timeout=5set menu_color_normal='yellow/blue'
set menu_color_highlight='black/cyan'loadfont /boot/grub/fonts/DejaVuSansMono18.pf2
set gfxmode=auto
terminal_output gfxtermmenuentry "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
}