Re: Exercise: Booting from a LiveUSB ISO and contents on /dev/sda6

2015-11-01 Thread Fajar A. Nugraha
On Mon, Nov 2, 2015 at 10:27 AM, Philip Rhoades wrote: > People, > > I want to enlarge my root partition on a Fedora 23 x86_64 system and I > know I can boot on a LiveUSB stick and use [g]parted from there to do what > I want but I thought I would try creating a small partition with the ISO > and

Re: GNU GRUB maintenance

2015-10-09 Thread Fajar A. Nugraha
On Thu, Oct 8, 2015 at 9:52 PM, Andrei Borzenkov wrote: > One problem is that none of them apparently allows reviewing by > E-Mail. Github partially support that. If you're watching a repo or has commit access to it, you should get notification emails for every issue. And you can review by replyi

Re: GNU GRUB maintenance

2015-10-07 Thread Fajar A. Nugraha
On Thu, Oct 8, 2015 at 6:02 AM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 07.10.2015 23:36, SevenBits wrote: >> What other systems would be ok? It >> obviously has to be a free software and hosted on free software-friendly >> hosting. It also has to have an efficient 1-click m

Re: grub2 and touch screen

2015-06-26 Thread Fajar A. Nugraha
On Fri, Jun 26, 2015 at 3:14 PM, Andrei Borzenkov wrote: > В Wed, 24 Jun 2015 14:06:42 +0200 > Theodore Christophe пишет: > >> hello all, >> >> First of all, thank-you for your works. >> >> I have installed Fedora21 on my laptop (Medion all in one) with dual >> boot, and every-thing is working fi

Re: grub rescue read or write sector outside of partition

2015-06-26 Thread Fajar A. Nugraha
On Fri, Jun 26, 2015 at 7:33 AM, Dale Carstensen wrote: > Somewhere I found that grub rescue has only a few commands, none > of them "help" or a list of commands, and no TAB-expansions. > Well, they seem to be ls, set, unset and insmod. Supposedly, > running insmod normal, then normal, will get b

Re: [PATCH] v2: grub-extras/lua: add fs label to grub.enum_device

2015-03-02 Thread Fajar A. Nugraha
changes from v1: add *label NULL check This patch modifies grub_lib.c to add fs label as fourth return value to grub.enum_device. This can be used on osdetect.lua to create OS description that is easier to understand, as well as providing pool names for root-on-zfs setup. Patch inline and attache

grub-extras/lua: fs->label in grub.enum_device

2015-02-27 Thread Fajar A. Nugraha
Hi, Is this the right place to ask about possible enhancement to grub-lua? I'm looking to modify osdetect.lua with the ability to boot ubuntu-on-zfs setup. Most of the needed capabilities are already there. However I can't find how to get pool name from a device. Grub is already able to detect th

Re: [PATCH] grub-extras/lua: add fs label to grub.enum_device

2015-02-27 Thread Fajar A. Nugraha
On Fri, Feb 27, 2015 at 7:42 PM, Vladimir 'phcoder' Serbinenko wrote: > > Le 2015-02-27 13:40, "Fajar A. Nugraha" a écrit : > > >> >> On Fri, Feb 27, 2015 at 7:28 PM, Vladimir 'φ-coder/phcoder' Serbinenko >> wrote: >> > On

Re: [PATCH] grub-extras/lua: add fs label to grub.enum_device

2015-02-27 Thread Fajar A. Nugraha
On Fri, Feb 27, 2015 at 7:28 PM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 27.02.2015 13:06, Andrei Borzenkov wrote: >> >> On Fri, Feb 27, 2015 at 2:56 PM, Vladimir 'φ-coder/phcoder' Serbinenko >> wrote: >>&g

Re: [PATCH] grub-extras/lua: add fs label to grub.enum_device

2015-02-27 Thread Fajar A. Nugraha
On Fri, Feb 27, 2015 at 6:56 PM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 27.02.2015 12:47, Fajar A. Nugraha wrote: >> >> + lua_pushstring (state, label); > > What happens if label is NULL? On my test it doesn't throw any errors. Note that the new

[PATCH] grub-extras/lua: add fs label to grub.enum_device

2015-02-27 Thread Fajar A. Nugraha
The original mail, in case it didn't get through (because I used the wrong sender address): On Fri, Feb 27, 2015 at 3:41 PM, Fajar A. Nugraha wrote: > > Hi, > > Is this the right place to ask about possible enhancement to grub-lua? > > I'm looking to modify osdetect.