hzyitc

Results 23 comments of hzyitc

I make some changes at #70

It seem like that it will add all the apt sources from both `cli` and `desktop` even though build as `minimal`. I'm not sure whether it's a special design. [/lib/desktop.sh#L193](https://github.com/armbian/build/blob/master/lib/desktop.sh#L193):...

Maybe make user be able to install full desktop environment? I don't know. Probably need to ask the author.

@rpardini Sorry for forgot this. Yes, `hook function` is better than this PR. We can use different function to divide the configs of `u-boot`, `kernel`. But as my option, `hook...

@igorpecovnik Could I just commit in this PR for `Plymouth`

> some boot text Try to add `quiet` into cmdline? > no CHIP logo The version of `plymouth` in `bullseye` didn't support to show logo. `jammy` works fine. Maybe we...

Please upload the log file `output/debug/install.log`. The script will output the log of `mkfs.fat` to this file: [lib/debootstrap.sh#L688](https://github.com/armbian/build/blob/master/lib/debootstrap.sh#L688): ``` if [[ -n $bootpart ]]; then display_alert "Creating /boot" "$bootfs on...

Please check have you merge #4050 which show the same output.

Well, it seem like that this bug will only appear with `mkfs.fat 4.2 (2021-01-31) ` which the offical docker use. When LABEL is longer than 11 characters, `mkfs.fat 4.2 (2021-01-31)...

Confirmed in `mkfs.fat` source. https://github.com/dosfstools/dosfstools/blob/v4.1/src/mkfs.fat.c#L1500: ``` case 'n': /* n : Volume name */ sprintf(volume_name, "%-11.11s", optarg); for (i = 0; volume_name[i] && i < 11; i++) /* don't know...