Make-initrd development discussion
 help / color / mirror / Atom feed
From: Alexey Gladkov <legion@kernel.org>
To: make-initrd@lists.altlinux.org
Subject: Re: [make-initrd] Расширение раздела с корнем
Date: Tue, 26 Nov 2024 17:47:15 +0100
Message-ID: <Z0X7k5_AfifwoZgB@example.org> (raw)
In-Reply-To: <631122a2-0586-4e1d-b181-9a130075349d@basealt.ru>

On Tue, Nov 26, 2024 at 07:06:43PM +0300, Антон Мидюков wrote:
> 26.11.2024 19:01, Alexey Gladkov пишет:
> > On Mon, Nov 25, 2024 at 10:02:28PM +0300, Антон Мидюков wrote:
> >>
> >> Спасибо за принятый пулл-риквест:
> >> https://github.com/osboot/make-initrd/pull/41
> >>
> >> При сборке пакета нужно будет добавить у make-initrd-kickstart зависимость на пакет f2fs-tools.
> > 
> > Да, постараюсь не забыть.
> > 
> > Но не мог бы ты ещё чуть-чуть потестировать.
> > 
> 
> Да, конечно.
> Тем более мы ещё одну проблему нашли.
> На sd-картах и emmc зависает на цикле.
> 
> + for f in $(set +f; printf '%s\n' /sys/block/*)                                                                        
> + '[' -e /sys/block/mmcblk2 ']'                                                                                         
> + maj=                                                                                                                  
> + min=                                                                                                                  
> + IFS=:                                                                                                                 
> + read -r maj min                                                                                                       
> ++ get_device_type 179                                                                                                  
> ++ local id=179                                                                                                         
> ++ shift                                                                                                                
> ++ local block=                                                                                                         
> ++ local maj type                                                                                                       
> ++ read -r maj type                                                                                                     
> ++ '[' -n '' ']'                                                                                                        
> ++ '[' 'Character devices:' '!=' 'Block devices:' ']'                                                                   
> ++ read -r maj type                                                                                                     
> ++ '[' -n '' ']'                                                                                                        
> ++ '[' '1 mem' '!=' 'Block devices:' ']'                                                                                
> ++ read -r maj type                                                                                                     
> ++ '[' -n '' ']'                                                                                                        
> ++ '[' '4 /dev/vc/0' '!=' 'Block devices:' ']'                                                                          
> ++ read -r maj type                                                                                                     
> ++ '[' -n '' ']'                                                                                                        
> ++ '[' '4 tty' '!=' 'Block devices:' ']'                                                                                
> ++ read -r maj type                                                                                                     
> ++ '[' -n '' ']'                                                                                                        
> ++ '[' '4 ttyS' '!=' 'Block devices:' ']'                                                                               
> ++ read -r maj type 
> 
> И тому подобное бесконечно.
> Я так понимаю, неправильно обрабатывает.
> На них номер раздела буквой p отделяются от имени устройства.
> Но код пока не изучал.

Ясно. Предположу, что у вас только mmc карта, тогда ясно почему мы висим.
kickstart ждёт блочные устройства, которые понимает.

Вот так, думаю, будет работать:

diff --git a/features/kickstart/data/bin/kickstart b/features/kickstart/data/bin/kickstart
index 360c485b..291b12d6 100755
--- a/features/kickstart/data/bin/kickstart
+++ b/features/kickstart/data/bin/kickstart
@@ -190,7 +190,7 @@ ks_block_devices()
                blocktype="$(get_device_type "$maj")"

                case "$blocktype" in
-                       sd|virtblk)
+                       sd|virtblk|mmc)
                                ;;
                        *)
                                continue


-- 
Rgrds, legion



  parent reply	other threads:[~2024-11-26 16:47 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-16  5:23 Egor Shestakov
2024-11-16 13:28 ` Alexey Gladkov
2024-11-23 14:18   ` Антон Мидюков
2024-11-23 17:59     ` Alexey Gladkov
2024-11-24 10:34       ` Антон Мидюков
2024-11-24 12:51         ` Alexey Gladkov
2024-11-24 13:00           ` Антон Мидюков
2024-11-24 15:36           ` Антон Мидюков
2024-11-24 17:17             ` Alexey Gladkov
2024-11-24 17:29               ` Антон Мидюков
2024-11-25 19:02                 ` Антон Мидюков
2024-11-26 16:01                   ` Alexey Gladkov
2024-11-26 16:06                     ` Антон Мидюков
2024-11-26 16:32                       ` Alexey Gladkov
2024-11-26 16:47                       ` Alexey Gladkov [this message]
2024-11-26 17:22                         ` Антон Мидюков
2024-11-26 17:32                           ` Alexey Gladkov
2024-11-26 17:44                             ` Alexey Gladkov
2024-11-26 17:56                               ` Антон Мидюков
2024-11-26 18:16                                 ` Alexey Gladkov
2024-11-24 13:21         ` Alexey Gladkov
2024-11-24 13:22           ` Антон Мидюков
2024-11-24 13:34             ` Alexey Gladkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Z0X7k5_AfifwoZgB@example.org \
    --to=legion@kernel.org \
    --cc=make-initrd@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

Make-initrd development discussion

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/make-initrd/0 make-initrd/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 make-initrd make-initrd/ http://lore.altlinux.org/make-initrd \
		make-initrd@lists.altlinux.org make-initrd@lists.altlinux.ru make-initrd@lists.altlinux.com
	public-inbox-index make-initrd

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.make-initrd


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git