Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
68bea10b
Commit
68bea10b
authored
May 11, 2016
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix error in PXE arch names and add ARM32 and ARM64.
parent
8628cd60
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
CHANGELOG
CHANGELOG
+9
-1
man/dnsmasq.8
man/dnsmasq.8
+1
-1
src/option.c
src/option.c
+2
-1
No files found.
CHANGELOG
View file @
68bea10b
...
@@ -76,6 +76,14 @@ version 2.76
...
@@ -76,6 +76,14 @@ version 2.76
The number to be logged can be changed as SERVERS_LOGGED
The number to be logged can be changed as SERVERS_LOGGED
in src/config.h.
in src/config.h.
Swap the values if BC_EFI and x86-64_EFI in --pxe-service.
These were previously wrong due to an error in RFC 4578.
If you're using BC_EFI to boot 64-bit EFI machines, you
will need to update your config.
Add ARM32_EFI and ARM64_EFI as valid architectures in
--pxe-service.
version 2.75
version 2.75
Fix reversion on 2.74 which caused 100% CPU use when a
Fix reversion on 2.74 which caused 100% CPU use when a
...
...
man/dnsmasq.8
View file @
68bea10b
...
@@ -1358,7 +1358,7 @@ functions when supported by a suitable DHCP server.
...
@@ -1358,7 +1358,7 @@ functions when supported by a suitable DHCP server.
This specifies a boot option which may appear in a PXE boot menu. <CSA> is
This specifies a boot option which may appear in a PXE boot menu. <CSA> is
client system type, only services of the correct type will appear in a
client system type, only services of the correct type will appear in a
menu. The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
menu. The known types are x86PC, PC98, IA64_EFI, Alpha, Arc_x86,
Intel_Lean_Client, IA32_EFI,
BC_EFI, Xscale_EFI and X86-
64_EFI; an
Intel_Lean_Client, IA32_EFI,
X86-64_EFI, Xscale_EFI, BC_EFI, ARM32_EFI and ARM
64_EFI; an
integer may be used for other types. The
integer may be used for other types. The
parameter after the menu text may be a file name, in which case dnsmasq acts as a
parameter after the menu text may be a file name, in which case dnsmasq acts as a
boot server and directs the PXE client to download the file by TFTP,
boot server and directs the PXE client to download the file by TFTP,
...
...
src/option.c
View file @
68bea10b
...
@@ -3298,7 +3298,8 @@ static int one_opt(int option, char *arg, char *errstr, char *gen_err, int comma
...
@@ -3298,7 +3298,8 @@ static int one_opt(int option, char *arg, char *errstr, char *gen_err, int comma
{
{
struct
pxe_service
*
new
=
opt_malloc
(
sizeof
(
struct
pxe_service
));
struct
pxe_service
*
new
=
opt_malloc
(
sizeof
(
struct
pxe_service
));
char
*
CSA
[]
=
{
"x86PC"
,
"PC98"
,
"IA64_EFI"
,
"Alpha"
,
"Arc_x86"
,
"Intel_Lean_Client"
,
char
*
CSA
[]
=
{
"x86PC"
,
"PC98"
,
"IA64_EFI"
,
"Alpha"
,
"Arc_x86"
,
"Intel_Lean_Client"
,
"IA32_EFI"
,
"BC_EFI"
,
"Xscale_EFI"
,
"x86-64_EFI"
,
NULL
};
"IA32_EFI"
,
"x86-64_EFI"
,
"Xscale_EFI"
,
"BC_EFI"
,
"ARM32_EFI"
,
"ARM64_EFI"
,
NULL
};
static
int
boottype
=
32768
;
static
int
boottype
=
32768
;
new
->
netid
=
NULL
;
new
->
netid
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment