Re: Root device independent bootable disk images

2018-12-12 Thread Izumi Tsutsui
t) option like src/distrib/utils/embedded/mkimage, to avoid concat MBR + ffs image files. --- Izumi Tsutsui

Re: Root device independent bootable disk images

2018-12-13 Thread Izumi Tsutsui
ke it would require adding an offset option to > installboot as well. Ah, indeed. --- Izumi Tsutsui

Re: stdio.h's P_tmpdir definition - make it /tmp?

2019-08-31 Thread Izumi Tsutsui
mrg@ wrote: > a very long time ago in netbsd years tls@ patched GCC to use > /tmp over /var/tmp, for the compiler temporaries. This reminds me: https://gnats.netbsd.org/5700 IIRC, there were some discussion about this change on gcc 3.x import but I forgot details. --- Izumi Tsutsui

Re: Anyone still using YP support on NetBSD?

2021-09-28 Thread Izumi Tsutsui
FYI, https://mail-index.netbsd.org/netbsd-bugs/2018/09/24/msg059139.html --- Izumi Tsutsui

Re: style(5) proposal: forbid extern in .c

2023-03-15 Thread Izumi Tsutsui
struct netif_dif le_ifs[] = { /* dif_unitdif_nseldif_stats dif_private */ { 0, NLE0CONF, &le_stats[0], le0conf,}, }; #define NLE_IFS (sizeof(le_ifs) / sizeof(le_ifs[0])) struct netif_stats le_stats[NLE_IFS]; --- Izumi Tsutsui

Re: style(5) proposal: forbid extern in .c

2023-03-18 Thread Izumi Tsutsui
> - If not, the extern should be converted to static and the later >declaration should have static added to it. Thanks, using 'static' as a forward declaration just works. I'll commit the fix soon. --- Izumi Tsutsui

Re: Changing disk image boot options without root privileges

2017-04-16 Thread Izumi Tsutsui
oot(8) like makefs(8)'s -O etc? (completely untested) --- Izumi Tsutsui

Re: Changing disk image boot options without root privileges

2017-04-16 Thread Izumi Tsutsui
common/bootimage/Makefile.bootimage#371 (yes, it's so ugly, but no other better suggestion in PR/45153) --- Izumi Tsutsui

Re: Changing disk image boot options without root privileges

2017-04-17 Thread Izumi Tsutsui
h "boot" partition, but in the liveimage case we need to check fdisk/MBR partition. It would be trivial, but not sure if it's worth enough though. --- Izumi Tsutsui