WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Debian Jessie dCore  (Read 24275 times)

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #30 on: September 17, 2014, 11:00:24 PM »
hi jason,

for me waitusb with label is still unstable, but i have no problem to change my bootcode to waitusb=5 without label.
wheezy  and all other cuts work fine with waitusb=5:LABEL=tc.

never mind, thank you for your help and commitment.

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #31 on: September 18, 2014, 02:09:19 AM »
What is the md5sum of your dCore-jessie.gz?


Just to be sure.

And do you see the "Waiting as requested.." line when booting dCore-jessie at all?

And what is the output of the below command once dCore-jessie has booted:

blkid -it LABEL=tc
« Last Edit: September 18, 2014, 02:31:30 AM by Jason W »

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #32 on: September 18, 2014, 08:35:07 AM »
What is the md5sum of your dCore-jessie.gz?
i renamed dCore-jessie.gz to dCore.gz:
tc@box:~/.MNT/sdb1/live/dcore-testing/boot$ md5sum dCore.gz
1b2e5d9ba7ff976652f48698a3a44664  dCore.gz
that md5sum should be correct.
Quote
blkid -it LABEL=tc
tc@box:~/.MNT/sdb1/live/dcore-testing/boot$ blkid -it LABEL=tc
The low-level probing mode requires a device

tc@box:~$ blkid -s LABEL /dev/sdb2
/dev/sdb2: LABEL="tc"

tc@box:~$ sudo lsblk -o name,label,mountpoint /dev/sdb
NAME   LABEL   MOUNTPOINT
sdb           
|-sdb1 MYSTICK /mnt/sdb1
`-sdb2 tc      /mnt/sdb2

i attached the photos of my two boot-versions,
first with label the failed boot process :(
second without label and a successful boot process :)
« Last Edit: September 18, 2014, 09:09:33 AM by netnomad »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #33 on: September 18, 2014, 09:12:39 AM »
The command is "blkid -lt LABEL=TC", I made a typo.

Oh, and I assume you have renamed vmlinuz-jessie to vmlinuz?

One thing that may help is to start with only the tce directory being specified on the boot line, and if that works start adding each one back one at a time and see at what point it fails.
« Last Edit: September 18, 2014, 09:17:34 AM by Jason W »

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #34 on: September 18, 2014, 09:31:12 AM »
The command is "blkid -lt LABEL=TC", I made a typo.
tc@box:~$ blkid -lt LABEL=TC
tc@box:~$ sudo blkid -lt LABEL=TC
tc@box:~$

there is no echo or result to this command.

Quote
Oh, and I assume you have renamed vmlinuz-jessie to vmlinuz?
yes, you're right.

Quote
One thing that may help is to start with only the tce directory being specified on the boot line, and if that works start adding each one back one at a time and see at what point it fails.

my whole bootcode works fine, only waitusb with label-mode waitusb=5:LABEL=tc makes problems:

kernel /live/dcore-testing/boot/vmlinuz waitusb=5 protect restore=LABEL=tc tce=LABEL=tc/tce lst=sceboottest.lst vga=795 psmouse.proto=imps settime tz=CET-1CEST,M3.5.0,M10.5.0/3 laptop kmap=de multivt lang=de_DE.UTF-8 mydata=dcoret blacklist=snd_usb_audio intel_rng.no_fwh_detect=-1 printk.time=1 cron desktop=fluxbox log=3 acpi_sleep=s3_bios,s3_mode showapps
append initrd=/live/dcore-testing/boot/dCore.gz
« Last Edit: September 18, 2014, 09:33:17 AM by netnomad »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #35 on: September 18, 2014, 09:49:59 AM »
Using lowercase tc with the command should work.  If not, then that is the issue as the blkid command is used to check whether the device is available and then exists the waitusb loop.


Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #36 on: September 18, 2014, 10:13:14 AM »
tc@box:~$ blkid -lt LABEL=tc
/dev/sdb2: LABEL="tc" UUID="6cc7058b-ac89-40a1-8700-e43e47539ce3" SEC_TYPE="ext2" TYPE="ext3"

in my common bootcode i use lowercase, too:
waitusb=5:LABEL=tc
« Last Edit: September 18, 2014, 10:15:10 AM by netnomad »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #37 on: September 18, 2014, 11:59:09 AM »
Ok, I will try my setup with a two digit label and ext3, now I have fat32 with label SCE.  It shouldn't make a difference, but there is something making my setup work and yours not.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: Debian Jessie dCore
« Reply #38 on: September 18, 2014, 02:43:43 PM »
Quote
tce=LABEL=tc/tce

Why not

Code: [Select]
tce=LABEL=tc
?
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #39 on: September 18, 2014, 11:13:11 PM »
hi tinypoodle,

you are right that there is no need for
tce=LABEL=tc/tce
so i tried also
tce=LABEL=tc

there is no difference for me, i have tried both.

the faq describes the option to use a path to the tce-directory, f.e. tce=LABEL=tc/path/tce,
so both should work.
« Last Edit: September 19, 2014, 12:11:07 AM by netnomad »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #40 on: September 19, 2014, 03:10:32 AM »
I have found that there seems to be an issue when using an ext2 formatted usb drive.

I will look into it.

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #41 on: September 20, 2014, 07:34:25 PM »
This was a udev issue in Debian Jessie that needed a simple udev fix.  Thank you netnomad, JLS, and any others that tested and reported this issue, for helping to make dCore/dCore-jessie better than it was yesterday.  The fix is also applicable or at least not damaging to dCore Wheezy, also updated in the release_candidates area.
« Last Edit: September 20, 2014, 07:52:18 PM by Jason W »

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #42 on: September 21, 2014, 12:53:44 AM »
hi jason,

yeah, you solved it :)

thank you for your great work.

Offline netnomad

  • Hero Member
  • *****
  • Posts: 1026
Re: Debian Jessie dCore
« Reply #43 on: September 21, 2014, 12:35:02 PM »
hi jason,

sorry, but there are still minor issues, so the last cut is still a bit unstable.

i guess a warm reboot of dcore-jessie could initiate errors,
rebooting from tinycore 4.7.7 to dcore-jessie works better.
a cold boot process seems to be more stable.
there could be a problem with the reboot of unclean-ext3-filesystems, too?
or is it just the problem that a warm reboot causes issues with the init of the usb-bus?

you improved the situation, but some reboots still fail :(
« Last Edit: September 21, 2014, 12:40:38 PM by netnomad »

Offline Jason W

  • Administrator
  • Hero Member
  • *****
  • Posts: 9730
Re: Debian Jessie dCore
« Reply #44 on: September 21, 2014, 01:44:18 PM »
Does your usb drive have an unclean file system?  Fixing the fs would remove one variable that could certainly cause issue.

What errors do you see?

EDIT:  I am still having LABEL boot issues with ext2 usb, I will look into it.
« Last Edit: September 21, 2014, 02:08:23 PM by Jason W »