Re: [DNG] UEFI support in the live-sdk

2019-07-07 Thread aitor_czr

Hi,

On 7/7/19 9:40, aitor_czr wrote:


Hi again,

On 6/7/19 12:36, fsmithred via Dng wrote:


I selected Devuan, stable, main.


Yesterday i selected Gnuinos, stable, main, and it worked for me.

I uploaded the image today:

http://gnuinos.org/Ascii/

Cheers,

Aitor.

Wicd doesn't work, and simple-netaid still is not finished. But you can 
run the following script:


pkill dhclient
pkill wpa_supplicant
ip addr flush dev 
ip link set dev  down
ifdown 
ip link set dev  up
wpa_passphrase   > wpa.conf
wpa_supplicant -B -i  -c wpa.conf
ifup 

After adding the following line to your "/etc/network/interfaces"

iface  inet dhcp

and restart the network-manager.

The above script uses ifupdown instead of dhclient, because it's also 
compatible with static ip addresses.
If you use dhclient, then you don't need to add anythind to 
"/etc/network/interfaces", because it takes the configuration from 
"/etc/dhcp/dhclient.conf".


HTH,

Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-07-07 Thread aitor_czr

Hi again,

On 6/7/19 12:36, fsmithred via Dng wrote:


I selected Devuan, stable, main.


Yesterday i selected Gnuinos, stable, main, and it worked for me.

I uploaded the image today:

http://gnuinos.org/Ascii/

Cheers,

Aitor.



___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-07-06 Thread fsmithred via Dng

On 7/6/19 7:16 AM, aitor_czr wrote:


First of all, are you using the latest sources:

$ git clone https://git.devuan.org/aitor_czr/live-sdk.git



No, I'm using the copy I cloned at the end of May. It worked for me then; 
I did not change anything, so I expect it should work now.



On the other hand, i must admit that i didn't update the repository of 
gnuinos during weeks; so, it couldn't work. did you select this choice?


I selected Devuan, stable, main. Same as last time. Today I tried changing 
the mirror from deb.devuan.org to pkgmaster.devuan.org but it didn't make 
any difference. It pulls down Packages.gz and then stops.



--2019-07-06 12:28:41-- 
http://pkgmaster.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz

Resolving pkgmaster.devuan.org (pkgmaster.devuan.org)... 5.196.38.18
Connecting to pkgmaster.devuan.org 
(pkgmaster.devuan.org)|5.196.38.18|:80... connected.

HTTP request sent, awaiting response... 200 OK
Length: 62636 (61K) [text/plain]
Saving to: ‘Packages.gz’

Packages.gz 
100%[===>]  61.17K   246KB/sin 
0.2s


2019-07-06 12:28:42 (246 KB/s) - ‘Packages.gz’ saved [62636/62636]

  .  libdevuansdk v1.0 loaded
  .  devuan blend leaded
livesdk@ascii  %


fsr
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-07-06 Thread aitor_czr

Hi fsmithred,

On 5/7/19 22:46, fsmithred via Dng wrote:

On 5/30/19 4:54 PM, aitor_czr wrote:

Hi fsmithred,

On 30/5/19 15:30, fsmithred via Dng wrote:




Reboot into the system looks good. It installed the full system from 
the iso (without network)

:) :) :)

Now I have to look at it and figure out what you did.

fsmithred 


All these changes have been commited in the git repository. I'll 
build another image during this night...


Thanks a lot for your help, fsmithred :)

Cheers,

Aitor.



I'm just getting back to this now. I tried running it again without 
making any changes. Ran the following commands including the trivial 
steps to select repo, suite, etc. and it did not build.



# zsh -f

# source sdk

# load

the following steps are trivial. You can choose between the 
repository of devuan or gnuinos (a fully amprolla setup). Debian is a 
work in progress.



After the dialog, it just dumped me back to the zsh prompt. What am I 
missing? I tried build_iso_dist and it said "command not found."


Thanks,
fsmithred


First of all, are you using the latest sources:

$ git clone https://git.devuan.org/aitor_czr/live-sdk.git

On the other hand, i must admit that i didn't update the repository of 
gnuinos during weeks; so, it couldn't work. did you select this choice?
I've just updated the repository today with amprolla and the live-sdk is 
working for me. Sorry, but i'm focused on simple-netaid these days, and 
i want to finish it over the course of july.
I did a lot of improvements. One of them is the unlimited size of the 
buffer shared by the server and the client sides of the unix socket (the 
shared information between the backend and the frontend).


This unlimited size of the buffer is possible thanks to the sbuf structs 
whose lifecycle is:


struct sbuf s;
sbuf_init(&s);
sbuf_addch(&s, 'F');    /**    add a character    **/
sbuf_addstr(&s, str);  /** add a string     **/
printf("%s\n", s.buf);
free(s.buf);    /** free the memory    **/

But this is not my job... I took the idea from another project (by a 
developer of bunsenlabs -Johan Malm- together with one of the main 
developers of the tint2 panel):


https://github.com/johanmalm/jgmenu

I always beat around the bush :)

Cheers,

Aitor.



___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-07-05 Thread fsmithred via Dng

On 5/30/19 4:54 PM, aitor_czr wrote:

Hi fsmithred,

On 30/5/19 15:30, fsmithred via Dng wrote:




Reboot into the system looks good. It installed the full system from the 
iso (without network)

:) :) :)

Now I have to look at it and figure out what you did.

fsmithred 


All these changes have been commited in the git repository. I'll build 
another image during this night...


Thanks a lot for your help, fsmithred :)

Cheers,

Aitor.



I'm just getting back to this now. I tried running it again without making 
any changes. Ran the following commands including the trivial steps to 
select repo, suite, etc. and it did not build.



# zsh -f

# source sdk

# load

the following steps are trivial. You can choose between the repository of 
devuan or gnuinos (a fully amprolla setup). Debian is a work in progress.



After the dialog, it just dumped me back to the zsh prompt. What am I 
missing? I tried build_iso_dist and it said "command not found."


Thanks,
fsmithred
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread aitor_czr

Hi fsmithred,

On 30/5/19 15:30, fsmithred via Dng wrote:

On 5/30/19 11:17 AM, aitor wrote:

Hi fsmithred,

On 30/5/19 16:37, fsmithred via Dng wrote:
I chose openbox, ascii, main and I got xfce instead. 

Yes, i know... The same happened to me.
The config file is the config file for xfce. Minor issue :)

Cheers

Aitor.



Yeah, I didn't even look at the package lists, but I figured they need 
to be adjusted.


More info:

Text-install gets kernel panic in uefi mode.


There was a wrong line in the entry of the text install. I fixed it, but 
i still didn't text it.



Boots ok in bios mode.
Install works up to the point that grub-install fails. (No grub-pc in 
the iso)


Yes... "grub-pc" and "grub-pc-bin" (both required for bios) were missing 
in the list of .deb packages:


    di_pkgs+=(
        grub-pc
        grub-pc-bin
        $grub_efi
        ${grub_efi}-bin
        grub-common
        grub2-common
        efibootmgr
        libefiboot1
        libefivar1
        libpopt0
        ucf
        libdevmapper1.02.1
        libfreetype6
        libfuse2
        gettext-base
        libpng12-0
        dmsetup
    )



Graphical install in uefi mode without network proceeded normally up to
"Finish the installation" when it gave the error:

    Failed to run in-target preseed-hack (exit code 126)


There was mistake in "blend_finalize()", which gives execution 
permissions to the preseed-hack file. I replaced the following line:


    cat 

Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread fsmithred via Dng

On 5/30/19 11:17 AM, aitor wrote:

Hi fsmithred,

On 30/5/19 16:37, fsmithred via Dng wrote:
I chose openbox, ascii, main and I got xfce instead. 

Yes, i know... The same happened to me.
The config file is the config file for xfce. Minor issue :)

Cheers

Aitor.



Yeah, I didn't even look at the package lists, but I figured they need to 
be adjusted.


More info:

Text-install gets kernel panic in uefi mode. Boots ok in bios mode.
Install works up to the point that grub-install fails. (No grub-pc in the iso)

Graphical install in uefi mode without network proceeded normally up to
"Finish the installation" when it gave the error:

Failed to run in-target preseed-hack (exit code 126)

Reboot into the system looks good. It installed the full system from the 
iso (without network)

:) :) :)

Now I have to look at it and figure out what you did.

fsmithred
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread aitor

Hi fsmithred,

On 30/5/19 16:37, fsmithred via Dng wrote:
I chose openbox, ascii, main and I got xfce instead. 

Yes, i know... The same happened to me.
The config file is the config file for xfce. Minor issue :)

Cheers

Aitor.

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread fsmithred via Dng

On 5/30/19 7:23 AM, aitor wrote:

Hi,

On 30/5/19 11:43, aitor wrote:
I've just uncommented the "apt-get --yes --force-yes autoremove" line in 
the bootstrap file.
For some unknown reason, it was removing a lot of extra packages in the 
past, including xorg.


Aitor.

The "-d" parameter was also missing in the chroot-script thirdstage; so, 
/dev /proc and /sys were unmounted.


Aitor.



I re-cloned your repo and tried again. I got a bootable iso. I chose 
openbox, ascii, main and I got xfce instead.


Installer boots, but I was testing in qemu without a virtual disk, so I 
didn't go very far into it.


fsmithred

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread aitor

Hi,

On 30/5/19 11:43, aitor wrote:
I've just uncommented the "apt-get --yes --force-yes autoremove" line 
in the bootstrap file.
For some unknown reason, it was removing a lot of extra packages in 
the past, including xorg.


Aitor.

The "-d" parameter was also missing in the chroot-script thirdstage; so, 
/dev /proc and /sys were unmounted.


Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-30 Thread aitor

Hi fsmithred,

On 30/5/19 9:52, aitor_czr wrote:


Did you clone my latest git repository?

$ git clone https://git.devuan.org/aitor_czr/live-sdk.git

It's working for me using the apt repository of gnuinos:

livesdk@localhost  # build_iso_dist
 [D] build_iso_dist
 (*) building complete iso image
 [D] bootstrap_complete_base
 (*) bootstrapping gnuinos amd64 base
 (*) running debootstrap stage 1
I: Retrieving InRelease
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://packages.gnuinos.org/merged...
I: Retrieving adduser 3.115
I: Validating adduser 3.115
I: Retrieving apt 1.4.9
I: Validating apt 1.4.9
I: Retrieving apt-utils 1.4.9
I: Validating apt-utils 1.4.9
I: Retrieving base-files 9.9+gnuinos1
I: Validating base-files 9.9+gnuinos1
I: Retrieving base-passwd 3.5.43
I: Validating base-passwd 3.5.43
I: Retrieving bash 4.4-5
I: Validating bash 4.4-5
I: Retrieving bsdmainutils 9.0.12+nmu1
I: Validating bsdmainutils 9.0.12+nmu1
I: Retrieving bsdutils 1:2.29.2-1+devuan2.1

Cheers,

Aitor.

I've just uncommented the "apt-get --yes --force-yes autoremove" line in 
the bootstrap file.
For some unknown reason, it was removing a lot of extra packages in the 
past, including xorg.


Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-29 Thread aitor_czr

Hi fsmithred,

On 30/5/19 1:05, fsmithred via Dng wrote:

On 5/29/19 12:24 PM, aitor wrote:

Hi,

On 29/5/19 17:07, aitor wrote:


Hi,

On 29/5/19 10:17, aitor_czr wrote:
I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows 
me a boot menu but won't boot to live. It does the same with 
bios/isolinux as with uefi/grub


The repository of gnuinos has expired (invalid since 10h 21min 26s). 
So, try with devuan. I'll update it tonight.


Cheers,

Aitor.

Removing previously from the blend all the non existent packages like 
icecat, popupmenu, gftp, etc...


Aitor.





After I uncommented the lines in the helpers file I got errors 
complaining that the bootstrap dir does not exist. This happens when I 
choose guinos or devuan. It looks like some commands are in the wrong 
order.


Here's the terminal output after the load dialog:

--2019-05-29 16:05:44-- 
http://packages.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz 

Resolving packages.devuan.org (packages.devuan.org)... 46.105.191.77, 
2001:41d0:8:2c55::a2
Connecting to packages.devuan.org 
(packages.devuan.org)|46.105.191.77|:80... connected.

HTTP request sent, awaiting response... 301 Moved Permanently
Location: 
http://packages.roundr.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz 
[following]
--2019-05-29 16:05:45-- 
http://packages.roundr.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz 

Resolving packages.roundr.devuan.org (packages.roundr.devuan.org)... 
5.196.38.18
Connecting to packages.roundr.devuan.org 
(packages.roundr.devuan.org)|5.196.38.18|:80... connected.

HTTP request sent, awaiting response... 200 OK
Length: 62636 (61K) [text/plain]
Saving to: ‘Packages.gz’

Packages.gz 100%[===>] 
61.17K 251KB/s    in 0.2s


2019-05-29 16:05:47 (251 KB/s) - ‘Packages.gz’ saved [62636/62636]

  .  libdevuansdk v1.0 loaded
  .  devuan blend leaded
livesdk@ascii  # build_iso_dist | tee log/build.5
 [D] build_iso_dist
 (*) building complete iso image
 [D] bootstrap_complete_base
 (*) bootstrapping devuan amd64 base
 (*) running debootstrap stage 2
chroot: cannot change root directory to 
'/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap': 
No such file or directory

 [E] error in: bootstrap_complete_base
 [W] called in: bootstrap_complete_base
 [W] called in: devuan blend leaded
 [W] called in: running debootstrap stage 2
 [E] error reported, operation aborted.
 (*) writing system configuration
 [D] conf_print_debconf
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/debconf.set: 
No such file or directory

 [D] conf_print_fstab
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/fstab: 
No such file or directory

 [D] conf_print_hostname
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/hostname: 
No such file or directory

 [D] conf_print_hosts
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/hosts: 
No such file or directory

 [D] conf_print_netifaces
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/network/interfaces: 
No such file or directory

 [D] conf_print_resolvconf
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/resolv.conf: 
No such file or directory

 [D] conf_print_sourceslist
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/apt/sources.list: 
No such file or directory

 [E] error in: bootstrap_complete_base
 [E] error in: bootstrap_complete_base
 [W] called in: bootstrap_complete_base
 [W] called in: devuan blend leaded
 [W] called in: writing system configuration
livesdk@ascii  # exit
 [D] endgame EXIT
 [D] destructor: _ztmp_destructor
 [D] _ztmp_destructor
root@ascii:/home/user/build/aitors_live_sdk/live-sdk# exit



Huh!

Did you clone my latest git repository?

$ git clone https://git.devuan.org/aitor_czr/live-sdk.git

It's working for me using the apt repository of gnuinos:

livesdk@localhost  # build_iso_dist
 [D] build_iso_dist
 (*) building complete iso image
 [D] bootstrap_complete_base
 (*) bootstrapping gnuinos amd64 base
 (*) running debootstrap stage 1
I: Retrieving InRelease
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://packages.gnuinos.org/merged...
I: Retrieving adduser 3.115
I: Validating adduser 3.115
I: Retrieving apt 1.4.9
I: Validating apt 1.4.9
I: Retrieving apt-utils 1.4.9
I: Validating apt-utils 1.4.9
I: Retrieving base-files 9.9+gnuinos1
I: Validating base-files 9.9+gnuinos1
I: Retrieving base-passwd 3.5.43
I: Validating base-passwd 3.5.43
I: Retrieving bash 4.4-5
I: Validating bash 4.4-5
I: Retrieving bsdmainutils 9.0.12+nmu1
I: Validating bsdmainutils 9.0.12+nmu1
I: Retr

Re: [DNG] UEFI support in the live-sdk

2019-05-29 Thread fsmithred via Dng

On 5/29/19 12:24 PM, aitor wrote:

Hi,

On 29/5/19 17:07, aitor wrote:


Hi,

On 29/5/19 10:17, aitor_czr wrote:
I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows me 
a boot menu but won't boot to live. It does the same with bios/isolinux 
as with uefi/grub


The repository of gnuinos has expired (invalid since 10h 21min 26s). So, 
try with devuan. I'll update it tonight.


Cheers,

Aitor.

Removing previously from the blend all the non existent packages like 
icecat, popupmenu, gftp, etc...


Aitor.





After I uncommented the lines in the helpers file I got errors complaining 
that the bootstrap dir does not exist. This happens when I choose guinos 
or devuan. It looks like some commands are in the wrong order.


Here's the terminal output after the load dialog:

--2019-05-29 16:05:44-- 
http://packages.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz
Resolving packages.devuan.org (packages.devuan.org)... 46.105.191.77, 
2001:41d0:8:2c55::a2
Connecting to packages.devuan.org 
(packages.devuan.org)|46.105.191.77|:80... connected.

HTTP request sent, awaiting response... 301 Moved Permanently
Location: 
http://packages.roundr.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz 
[following]
--2019-05-29 16:05:45-- 
http://packages.roundr.devuan.org/merged/dists/ascii/main/debian-installer/binary-amd64/Packages.gz
Resolving packages.roundr.devuan.org (packages.roundr.devuan.org)... 
5.196.38.18
Connecting to packages.roundr.devuan.org 
(packages.roundr.devuan.org)|5.196.38.18|:80... connected.

HTTP request sent, awaiting response... 200 OK
Length: 62636 (61K) [text/plain]
Saving to: ‘Packages.gz’

Packages.gz 
100%[===>]  61.17K 
251KB/sin 0.2s


2019-05-29 16:05:47 (251 KB/s) - ‘Packages.gz’ saved [62636/62636]

  .  libdevuansdk v1.0 loaded
  .  devuan blend leaded
livesdk@ascii  # build_iso_dist | tee log/build.5
 [D] build_iso_dist
 (*) building complete iso image
 [D] bootstrap_complete_base
 (*) bootstrapping devuan amd64 base
 (*) running debootstrap stage 2
chroot: cannot change root directory to 
'/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap': 
No such file or directory

 [E] error in: bootstrap_complete_base
 [W] called in: bootstrap_complete_base
 [W] called in: devuan blend leaded
 [W] called in: running debootstrap stage 2
 [E] error reported, operation aborted.
 (*) writing system configuration
 [D] conf_print_debconf
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/debconf.set: 
No such file or directory

 [D] conf_print_fstab
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/fstab: 
No such file or directory

 [D] conf_print_hostname
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/hostname: 
No such file or directory

 [D] conf_print_hosts
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/hosts: 
No such file or directory

 [D] conf_print_netifaces
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/network/interfaces: 
No such file or directory

 [D] conf_print_resolvconf
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/resolv.conf: 
No such file or directory

 [D] conf_print_sourceslist
tee: 
/home/user/build/aitors_live_sdk/live-sdk/tmp/devuan-amd64-build/bootstrap/etc/apt/sources.list: 
No such file or directory

 [E] error in: bootstrap_complete_base
 [E] error in: bootstrap_complete_base
 [W] called in: bootstrap_complete_base
 [W] called in: devuan blend leaded
 [W] called in: writing system configuration
livesdk@ascii  # exit
 [D] endgame EXIT
 [D] destructor: _ztmp_destructor
 [D] _ztmp_destructor
root@ascii:/home/user/build/aitors_live_sdk/live-sdk# exit

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-29 Thread aitor

Hi,

On 29/5/19 17:07, aitor wrote:


Hi,

On 29/5/19 10:17, aitor_czr wrote:
I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows 
me a boot menu but won't boot to live. It does the same with 
bios/isolinux as with uefi/grub


The repository of gnuinos has expired (invalid since 10h 21min 26s). 
So, try with devuan. I'll update it tonight.


Cheers,

Aitor.

Removing previously from the blend all the non existent packages like 
icecat, popupmenu, gftp, etc...


Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-29 Thread aitor

Hi,

On 29/5/19 10:17, aitor_czr wrote:
I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows me 
a boot menu but won't boot to live. It does the same with 
bios/isolinux as with uefi/grub


T%he repository of gnuinos has expired (invalid since 10h 21min 26s). 
So, try with devuan. I'll update it tonight.


Cheers,

Aitor.


___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-28 Thread aitor_czr

Hi again,

Sorry for the [SPAM] label in my previous post :)

Aitor.


On 29/5/19 8:17, aitor_czr wrote:


Hi fsmithred,

On 28/5/19 12:31, fsmithred via Dng wrote:


I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows 
me a boot menu but won't boot to live. It does the same with 
bios/isolinux as with uefi/grub.


There's no kernel or initrd in the live dir on the iso or in 
binary/live.


The bootstrap dir only contains:
etc  root  tmp  usr

If I select Text install at the boot menu, the kernel starts to load 
and then I get a kernel panic.


There are no logs, but I did save the terminal output. I'll send it 
to you if you want. What should I do next?


Thanks,
fsmithred


Sorry, uncomment the lines:

    bootstrap_complete_base || { zerr; wrapup }
    bootstrap_thirdstage         || { zerr; wrapup }
    build_kernel_${arch}         || { zerr; wrapup }

in the helpers file. They were commented with a '#' symbol for my own 
tests. I pushed this change to gitlab, and now it works.
I also removed temporary some code from bootstrap which generates a 
tarball of the different stages of strapdir thinking about the 
possible use of mksquashfs.


Cheers,

Aitor.





___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-28 Thread aitor_czr

Hi fsmithred,

On 28/5/19 12:31, fsmithred via Dng wrote:


I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows me 
a boot menu but won't boot to live. It does the same with 
bios/isolinux as with uefi/grub.


There's no kernel or initrd in the live dir on the iso or in binary/live.

The bootstrap dir only contains:
etc  root  tmp  usr

If I select Text install at the boot menu, the kernel starts to load 
and then I get a kernel panic.


There are no logs, but I did save the terminal output. I'll send it to 
you if you want. What should I do next?


Thanks,
fsmithred


Sorry, uncomment the lines:

    bootstrap_complete_base || { zerr; wrapup }
    bootstrap_thirdstage         || { zerr; wrapup }
    build_kernel_${arch}         || { zerr; wrapup }

in the helpers file. They were commented with a '#' symbol for my own 
tests. I pushed this change to gitlab, and now it works.
I also removed temporary some code from bootstrap which generates a 
tarball of the different stages of strapdir thinking about the possible 
use of mksquashfs.


Cheers,

Aitor.




___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-28 Thread fsmithred via Dng

On 5/28/19 3:11 AM, aitor_czr wrote:

Hi again,

On 27/5/19 6:14, aitor_czr wrote:


Hi all,

I added the uefi support to the sources of the live-sdk:

https://git.devuan.org/aitor_czr/live-sdk/tree/master/

Install all the build dependencies mentioned in the README file (some of 
them can depend on the architecture of the system
(like, for example, grub-efi-amd64-bin / grub-efi-ia32-bin), and run as 
root:


# zsh -f

# source sdk

# load

the following steps are trivial. You can choose between the repository 
of devuan or gnuinos (a fully amprolla setup). Debian is a work in 
progress.




...



Sorry, the content of libdevuansk and zuper were redirected to parazyd's 
git repository; so, there were no changes there. I started a new repository

including my changes. A new file has been added:

https://git.devuan.org/aitor_czr/live-sdk/blob/master/lib/libdevuansdk/zlibs/debian-installer 



dedicated entirely to debian-installer.

Cheers,

Aitor.




I chose gnuinos, openbox, main. It ran. I got a 114M iso that shows me a 
boot menu but won't boot to live. It does the same with bios/isolinux as 
with uefi/grub.


There's no kernel or initrd in the live dir on the iso or in binary/live.

The bootstrap dir only contains:
etc  root  tmp  usr

If I select Text install at the boot menu, the kernel starts to load and 
then I get a kernel panic.


There are no logs, but I did save the terminal output. I'll send it to you 
if you want. What should I do next?


Thanks,
fsmithred







___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


Re: [DNG] UEFI support in the live-sdk

2019-05-27 Thread aitor_czr

Hi again,

On 27/5/19 6:14, aitor_czr wrote:


Hi all,

I added the uefi support to the sources of the live-sdk:

https://git.devuan.org/aitor_czr/live-sdk/tree/master/

Install all the build dependencies mentioned in the README file (some 
of them can depend on the architecture of the system
(like, for example, grub-efi-amd64-bin / grub-efi-ia32-bin), and run 
as root:


# zsh -f

# source sdk

# load

the following steps are trivial. You can choose between the repository 
of devuan or gnuinos (a fully amprolla setup). Debian is a work in 
progress.


Hope you like it :)

Cheers,

Aitor.

Sorry, the content of libdevuansk and zuper were redirected to parazyd's 
git repository; so, there were no changes there. I started a new repository

including my changes. A new file has been added:

https://git.devuan.org/aitor_czr/live-sdk/blob/master/lib/libdevuansdk/zlibs/debian-installer

dedicated entirely to debian-installer.

Cheers,

Aitor.

___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng


[DNG] UEFI support in the live-sdk

2019-05-26 Thread aitor_czr

Hi all,

I added the uefi support to the sources of the live-sdk:

https://git.devuan.org/aitor_czr/live-sdk/tree/master/

Install all the build dependencies mentioned in the README file (some of 
them can depend on the architecture of the system
(like, for example, grub-efi-amd64-bin / grub-efi-ia32-bin), and run as 
root:


# zsh -f

# source sdk

# load

the following steps are trivial. You can choose between the repository 
of devuan or gnuinos (a fully amprolla setup). Debian is a work in progress.


Hope you like it :)

Cheers,

Aitor.



___
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng